EasePop
  • Home
  • Features
  • Documentation
  • FAQ
  • Showcase
  • Pricing
  • Contact
Log inGet Started
EasePop Knowledge Base
EasePop Knowledge Base
EasePop Documentation
User Submissions
Plan Usage Limits
API Reference
API Authentication
Get submissions GET
Update submission status PATCH
Delete submission DELETE
API Reference/Submission

Update submission status

Update the status of a specific submission

PATCH
/api/submission/{submissionId}

Authorization

x-api-key<token>

API key for authentication

In: header

Path Parameters

submissionIdstring

Unique identifier of the submission to update

Request Body

New status for the submission

statusstring

New status for the submission

Value in"pending" | "completed"

Response Body

curl -X PATCH "https://api.easepop.dev/api/submission/string" \
  -H "Content-Type: application/json" \
  -d '{
    "status": "completed"
  }'

{
  "message": "Submission status updated successfully",
  "submissionId": "123e4567-e89b-12d3-a456-426614174000",
  "status": "completed"
}
{
  "message": "string"
}
{
  "message": "string"
}
{
  "message": "string"
}
{
  "message": "string"
}

Get submissions GET

Previous Page

Delete submission DELETE

Next Page