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": "0196b4f9-4812-7bbb-93a7-4ab1ebfceb02",
  "object": "email_validation",
  "status": "canceled",
  "results": [],
  "_links": {
    "self": {
      "href": "/email-validations/0196b4f9-4812-7bbb-93a7-4ab1ebfceb02"
    }
  }
}

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.