POST
/
PaymentMethodDomain
/
{domainId}
/
verify
curl --request POST \
  --url https://api-sandbox.payabli.com/api/PaymentMethodDomain/{domainId}/verify \
  --header 'requestToken: <api-key>'
{
  "responseText": "<string>",
  "responseData": {
    "entityId": 109,
    "entityType": "paypoint",
    "domainName": "subdomain.domain.com",
    "applePay": {
      "isEnabled": true,
      "data": {
        "errorMessage": "null",
        "metadata": {
          "isFileAvailable": true,
          "isFileContentValid": true,
          "statusCode": 123,
          "redirectUrl": "<string>",
          "redirectDomainName": "<string>"
        }
      }
    },
    "ownerEntityId": 109,
    "ownerEntityType": "organization",
    "cascades": [
      {
        "jobId": "445865",
        "jobStatus": "completed",
        "jobErrorMessage": "<string>",
        "createdAt": "2022-07-01 15:00:01",
        "updatedAt": "2022-07-01 15:00:01"
      }
    ],
    "createdAt": "2022-07-01 15:00:01",
    "updatedAt": "2022-07-01 15:00:01",
    "id": "pmd_12AB"
  },
  "pageidentifier": "null",
  "isSuccess": true
}

Authorizations

requestToken
string
header
required

Most endpoints require an organization token. Some endpoints require an application token, and those endpoints are noted.

Path Parameters

domainId
string
required

The payment method domain's ID in Payabli.

Example:

"pmd_12AB"

Response

200
application/json
Success
responseText
string
responseData
object

Data related to the payment method domain.

pageidentifier
string | null

Auxiliary validation used internally by payment pages and components.

Example:

null

isSuccess
boolean

Boolean indicating whether the operation was successful. A true value indicates success. A false value indicates failure.

Example:

true