Contendar Help

Archive submission

Archive a testimonial submission.

DELETE /testimonials/submissions/{testimonialSubmissionId}

This does not delete the row for good. It sets an archived time. The submission stops showing in Contendar and in list endpoints, but the data is kept.

Authentication

Send your API key as a bearer token. See Authentication .

Path parameters

ParameterTypeNotes
testimonialSubmissionIdUUIDThe ID of the submission.

Query parameters

ParameterTypeNotes
projectIdUUIDRequired. The project the submission belongs to.

Response

{ "success": true }

Errors

Returns 404 if no submission with that ID exists in the project.

Example

curl -X DELETE "https://app.contendar.com/api/v1/testimonials/submissions/b1d0c3a2-6f4e-4b8a-9c1d-2e3f4a5b6c7d?projectId=YOUR_PROJECT_ID" \
  -H "Authorization: Bearer ck_your_key_here"

Related pages

Was this helpful?