PATCH
/
email-validations
/
{id}
curl --request PATCH \
  --url https://api.amplemarket.com/email-validations/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "status": "canceled"
}'
{
"id": "0197abd8-ab0f-7c4b-9602-dd8e923433c6",
"object": "email_validation",
"status": "canceled",
"results": [],
"_links": {
"self": {
"href": "/email-validations/0197abd8-ab0f-7c4b-9602-dd8e923433c6"
}
}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Batch id

Query Parameters

page[size]
string

Page size

page[after]
string

Page after

page[before]
string

Page before

Body

application/json

New batch status

The body is of type object.

Response

200
application/json

Successful

The response is of type object.