Skip to main content
GET
/
businesses
/
{id}
/
cards
List business payout cards
curl --request GET \
  --url https://api.guile.app/businesses/{id}/cards \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "maskedPersonalAccountNumber": "<string>",
      "network": "visa",
      "fundingType": "debit",
      "expirationMonth": "<string>",
      "expirationYear": "<string>",
      "eligiblePayoutMethods": [
        "standard"
      ],
      "tokenizationMethod": "androidPay"
    }
  ],
  "count": 1
}

Path Parameters

id
string<uuid>
required

The unique, opaque system identifier for a resource. This case-sensitive ID is also used as path parameters in URLs or in other properties or parameters that reference a resource by ID rather than URL.

Query Parameters

payoutMethod
enum<string>[]

When included, limit cards to ones allowed for these payout methods.

The method used for the payout. Standard typically means T+2 days through ACH batch processing. Instant expediates payments for an additional processing fee. Instant payouts be be limited based on availability and other factors.

Available options:
standard,
instant

Response

Ok. The operation succeeded.

A list response for resources. This response contains the full result set after any filters are applied.

items
object[]
required
count
integer<int16>
required
Required range: x >= 0