For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
AI agentsStatus PageContact sales
HomeGuidesDeveloper ToolsChangelogsCookbooks
HomeGuidesDeveloper ToolsChangelogsCookbooks
    • Payabli developer overview
    • Developer quickstart
    • Developer testing guide
    • Test accounts
  • API
    • Using the API
    • API responses
    • API changelog
            • POSTAdd domain
            • POSTCascade domain
            • POSTVerify domain
            • GETGet payment method domain
            • GETList payment method domains
            • PATCHUpdate payment method domain
            • DELDelete payment method domain
    • Webhooks
  • Embedded Components
    • Overview
    • EmbeddedMethod UI
    • PayMethod UI
    • VirtualTerminal UI
    • ExpressCheckout UI
    • Changelog
  • Server SDKs
    • Server SDKs overview
  • Other tools
    • Postman collection
    • Payabli MCP
    • Example apps

© 2026 Centavo, Inc. All rights reserved | Centavo (DBA Payabli) is a registered Payment Facilitator of PNC Bank, N.A., Pittsburgh, PA. Payabli is a registered ISO/MSP of Merrick Bank, South Jordan, UT.

PayabliTest Cards & AccountsPay In StatusesPay Out StatusesTrust Center
LogoLogo
AI agentsStatus PageContact sales
APIPay In endpointsWallet managementPayment method domains

Get payment method domain

|View as Markdown|Open in Claude|
GET
/PaymentMethodDomain/:domainId
GET
/api/PaymentMethodDomain/:domainId
$curl https://api-sandbox.payabli.com/api/PaymentMethodDomain/pmd_b8237fa45c964d8a9ef27160cd42b8c5 \
> -H "requestToken: <apiKey>"
1{
2 "type": "PaymentMethodDomains",
3 "applePay": {
4 "data": null,
5 "isEnabled": true
6 },
7 "googlePay": {
8 "data": null,
9 "isEnabled": true
10 },
11 "createdAt": "2025-03-15T10:24:36.207Z",
12 "domainName": "checkout.example.com",
13 "entityId": 78,
14 "entityType": "organization",
15 "id": "pmd_b8237fa45c964d8a9ef27160cd42b8c5",
16 "ownerEntityId": 78,
17 "ownerEntityType": "organization",
18 "cascades": [
19 {
20 "createdAt": "2025-04-25T15:37:28.685Z",
21 "jobId": "1245697",
22 "jobStatus": "completed",
23 "updatedAt": "2025-04-25T15:37:33.228Z"
24 }
25 ],
26 "updatedAt": "2025-04-25T15:38:46.804Z"
27}
Get the details for a payment method domain.
Was this page helpful?
Previous

Verify domain

Next

List payment method domains

Authentication

requestTokenstring
API Key authentication via header

Path parameters

domainIdstringRequired
The payment method domain's ID in Payabli.

Response

Success response that includes a payment method domain's details.
typestring or null

The record type. For payment method domains, this is always PaymentMethodDomain.

applePayobject
Details about the status of the Apple Pay service.
googlePayobject
Details about the status of the Google Pay service.
createdAtdatetime
Timestamp of when record was created, in UTC.
domainNamestring

The domain. For example: subdomain.domain.com or domain.com. Must be public. Can’t be localhost, hidden by a VPN, or protected by a password.

entityIdlong
The entity's ID in Payabli. If the entity is a paypoint, this is the paypoint ID. If the entity is an organization, this is the organization ID.
entityTypestring

The entity type. Available values:

  • paypoint
  • organization
  • psp (payment service provider)
idstring
The payment method domain's ID in Payabli.
ownerEntityIdlong

The domain’s owning entity’s ID in Payabli. This value might be different than the entityId, depending on whether the domain is cascaded and whether it’s inherited.

ownerEntityTypestring

The domain’s owner’s entity type. Available values:

  • paypoint
  • organization
  • psp (payment service provider)
cascadeslist of objects
Data about the domain's cascade status.
updatedAtdatetime
Timestamp of when record was last updated, in UTC.

Errors

400
Bad Request Error
401
Unauthorized Error
500
Internal Server Error
503
Service Unavailable Error