POST
/
emailchecks
curl --request POST \
  --url https://test.onlinecheckwriter.com/api/v3/emailchecks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "emailChecks": [
    {
      "checkId": "RJ6qGAAxJPGE1rD",
      "payeeEmail": "payee@example.com",
      "enableSmsInform": true,
      "payeePhone": "+1234567890",
      "sendAttachment": 1
    },
    {
      "checkId": "dJM5Gbk3LQeY329",
      "payeeEmail": "another@example.com",
      "enableSmsInform": false,
      "sendAttachment": 0
    }
  ]
}'
{
  "success": true,
  "message": "Successfully done"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
Payload to create one or more email checks.
emailChecks
object[]

Response

200
application/json
Successful response for email checks.
success
boolean
Example:

true

message
string
Example:

"Successfully done"