> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Submission

Retrieve information about a single submission using its ID.

<Note>
  External Documentation

  To learn more, visit the [Bugcrowd documentation](https://docs.bugcrowd.com/api/1.0.0/#tag/submission_resource/operation/getSubmission).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter           | Description                                                                                  |
  | ------------------- | -------------------------------------------------------------------------------------------- |
  | Activity Fields     | Specify which optional data fields to include in the `activity` property of each record.     |
  | Engagement Fields   | Specify which optional data fields to include in the `engagement` property of each record.   |
  | Identity Fields     | Specify which optional data fields to include in the `identity` property of each record.     |
  | Include             | Specify which optional data fields to include in the response.                               |
  | Organization Fields | Specify which optional data fields to include in the `organization` property of each record. |
  | Submission ID       | The ID of the submission to retrieve.                                                        |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter               | Description                                                                                      |
  | ----------------------- | ------------------------------------------------------------------------------------------------ |
  | CVSS Vector Fields      | Specify which optional data fields to include in the `cvss_vector` property of each record.      |
  | Claim Ticket Fields     | Specify which optional data fields to include in the `claim_ticket` property of each record.     |
  | Comment Fields          | Specify which optional data fields to include in the `comment` property of each record.          |
  | Engagement Brief Fields | Specify which optional data fields to include in the `engagement_brief` property of each record. |
  | Events Fields           | Specify which optional data fields to include in the `event` property of each record.            |
  | External Issue Fields   | Specify which optional data fields to include in the `external_issue` property of each record.   |
  | File Attachment Fields  | Specify which optional data fields to include in the `file_attachment` property of each record.  |
  | Monetary Reward         | Specify which optional data fields to include in the `monetary_reward` property of each record.  |
  | Payment Fields          | Specify which optional data fields to include in the `payment` property of each record.          |
  | Program Fields          | Specify which optional data fields to include in the `program` property of each record.          |
  | Submission Fields       | Specify which optional data fields to include in the `submission` property of each record.       |
  | Target Fields           | Specify which optional data fields to include in the `target` property of each record.           |
  | Target Group Fields     | Specify which optional data fields to include in the `target_group` property of each record.     |
</div>

## Example Output

```json theme={"dark"}
{
	"data": {
		"id": {
			"$ref": "https://bugcrowd.com/openapi/2025-04-23/external_elements.yml#/general_helpers/ValidUUID"
		},
		"type": "submission",
		"attributes": {
			"state": "new",
			"duplicate": true
		},
		"relationships": {
			"assignees": {
				"data": [
					{
						"id": {
							"$ref": "https://bugcrowd.com/openapi/2025-04-23/external_elements.yml#/general_helpers/ValidUUID"
						},
						"type": "identity"
					}
				],
				"links": {
					"related": {
						"href": "(NOT IMPLEMENTED YET)",
						"meta": {
							"count": 1,
							"total_hits": 1
						}
					}
				}
			}
		},
		"links": {
			"self": "/submissions/10000000-0000-0000-0000-000000000000"
		}
	},
	"included": [
		{
			"id": {
				"$ref": "https://bugcrowd.com/openapi/2025-04-23/external_elements.yml#/general_helpers/ValidUUID"
			},
			"type": "program",
			"attributes": {
				"code": "code"
			},
			"relationships": {
				"organization": {
					"data": {
						"id": {
							"$ref": "https://bugcrowd.com/openapi/2025-04-23/external_elements.yml#/general_helpers/ValidUUID"
						},
						"type": "organization"
					},
					"links": {
						"related": {
							"href": "/organizations/10000000-0000-0000-0000-000000000000"
						}
					}
				}
			},
			"links": {
				"self": "/programs/10000000-0000-0000-0000-000000000000"
			}
		}
	]
}
```

## Workflow Library Example

[Get Submission with Bugcrowd and Send Results Via Email](https://library.blinkops.com/workflows/get-submission-with-bugcrowd-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-submission-with-bugcrowd-and-send-results-via-email/canvas" />
</div>
