Nurama Developers

get_submission

Fetch a single submission package by id, including its metadata.

Read-only tool.

Fetch a single submission package by id, including its metadata. Use this after list_submissions to drill into one submission's contents.

Input

PropertyTypeRequiredDescription
projectIdstringyesUUID of the project the submission belongs to.
submissionIdstringyesUUID of the submission.

JSON Schema

{
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "description": "UUID of the project the submission belongs to."
    },
    "submissionId": {
      "type": "string",
      "description": "UUID of the submission."
    }
  },
  "required": [
    "projectId",
    "submissionId"
  ],
  "additionalProperties": false
}

On this page