POST
/
Wallet
/
applepay
/
configure-paypoint
curl --request POST \
  --url https://api-sandbox.payabli.com/api/Wallet/applepay/configure-paypoint \
  --header 'Content-Type: application/json' \
  --header 'requestToken: <api-key>' \
  --data '{
  "entry": "8cfec329267",
  "isEnabled": true
}'
{
  "isSuccess": true,
  "responseText": "Success",
  "responseData": {
    "entry": "8cfec329267",
    "applePayMerchantId": "<string>",
    "domainNames": [
      "subdomain.domain.com"
    ],
    "paypointName": "Alaskan Domes",
    "paypointUrl": "<string>",
    "markedForDeletionAt": "2022-07-01 15:00:01",
    "createdAt": "2022-07-01 15:00:01",
    "updatedAt": "2022-07-01 15:00:01",
    "id": "<string>",
    "type": "<string>"
  },
  "responseCode": 1,
  "pageIdentifier": "null",
  "roomId": 123
}

Authorizations

requestToken
string
header
required

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

Body

entry
string

The paypoint's entrypoint identifier. Learn more

Example:

"8cfec329267"

isEnabled
boolean

When true, Apple Pay is enabled.

Example:

true

Response

200
application/json
Success
isSuccess
boolean

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

Example:

true

responseText
string | null

Response text for operation: 'Success' or 'Declined'.

Example:

"Success"

responseData
object
responseCode
integer | null

Code for the response. Learn more in API Response Codes.

Example:

1

pageIdentifier
string | null

Auxiliary validation used internally by payment pages and components.

Example:

null

roomId
integer

Identifier for related message room for the application.