POST
/
queues
/
{queueId}
curl --request POST \
  --url https://api.contentmod.io/queues/{queueId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "type": "text",
  "content": "This is a very cool api",
  "meta": "{}",
  "actorId": "123"
}'
{
  "id": "<string>",
  "status": "processing"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

image

The body is of type object.

Response

200
application/json

Response of the created queue item

The response is of type object.