Skip to main content
GET
Get billing method by ID

Authorizations

X-Api-Key
string
header
required

Company Level Authentication

Include your API key in the X-Api-Key header for every request:

Headers

snappy-account-id
string
required

Account identifier.

Example:

"acc123456"

snappy-company-id
string

Optional company identifier.

Example:

"cmp123456"

Path Parameters

billingMethodId
string
required

The ID of the billing method to retrieve.

Example:

"6a2515d0982480c2a4fd6b81"

Response

Billing method details.

A single billing method.

id
string
required

The unique identifier of the billing method.

Example:

"6a2515d0982480c2a4fd6b81"

name
string
required

The display name of the billing method.

Example:

"Q1 Marketing PO"

type
enum<string>
required

The type of the billing method.

Available options:
Prepay,
Invoice,
PO,
CC
Example:

"PO"

status
enum<string>
required

The current status of the billing method.

Available options:
draft,
active,
archived,
expired
Example:

"active"

createdAt
string<date-time>
required

The date the billing method was created, in ISO-8601 format.

Example:

"2025-01-15T10:00:00.000Z"

expirationDate
string<date-time> | null
required

The expiration date of the billing method, in ISO-8601 format. Null when no expiry is configured.

Example:

"2025-12-31T23:59:59.000Z"

spendingLimit
object | null
required

Spending limit details. Null when the billing method has no cap (e.g. Invoice).

Example:
Last modified on June 17, 2026