Configure Apple Pay for a Paypoint
API Basics
Pay In Endpoints
- MoneyIn
- Subscription
- TokenStorage
- Invoice
- LineItem
- PaymentLink
- PaymentMethodDomain
- HostedPaymentPages
- Cloud
- Wallet: Apple Pay
Pay Out Endpoints
- MoneyOut
- Bill
Pay Ops Endpoints
- Templates
- Boarding
- Chargebacks and ACH Returns
- Entities
- Notification
- Query
- Statistic
- Export
- Import
Object Models
- Object Model References
Configure Apple Pay for a Paypoint
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
Most endpoints require an organization
token. Some endpoints require an application
token, and those endpoints are noted.
Body
Response
200
application/json
Success
The response is of type object
.
Was this page helpful?
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
}