Get submission
Get one NPS submission by its ID.
GET /nps/submissions/{npsSubmissionId}Authentication
Send your API key as a bearer token. See Authentication .
Path parameters
| Parameter | Type | Notes |
npsSubmissionId | UUID | The ID of the submission. |
Query parameters
| Parameter | Type | Notes |
projectId | UUID | Required. The project the submission belongs to. |
Response
{
"npsSubmissionId": "d3f2e5c4-8b6a-4d0c-9e3f-4a5b6c7d8e9f",
"projectId": "8a7b6c5d-4e3f-2a1b-0c9d-8e7f6a5b4c3d",
"formBuilderId": "1f2e3d4c-5b6a-7980-1234-56789abcdef0",
"customerId": null,
"score": 9,
"comment": "Would recommend to any marketing team.",
"category": "promoter",
"status": "active",
"source": "form",
"createdAt": "2026-08-25T08:30:00.000Z",
"updatedAt": "2026-08-25T08:30:00.000Z"
}See List NPS submissions for the meaning of each field.
Errors
Returns 404 if no submission with that ID exists in the project.
Example
curl "https://app.contendar.com/api/v1/nps/submissions/d3f2e5c4-8b6a-4d0c-9e3f-4a5b6c7d8e9f?projectId=YOUR_PROJECT_ID" \
-H "Authorization: Bearer ck_your_key_here"Related pages
Was this helpful?