Skip to main content
POST
Send Physical Check Payment

Headers

X-Platform-ID
string<uuid>
required

Unique platform identifier (UUID). You receive this during onboarding. Must be sent with every API request.

X-Signature
string
required

HMAC-SHA256 request signature for authentication. Use your platform secret key to compute it as: METHOD + PATH + QUERY + BODY_HASH.

Path Parameters

user_id
string<uuid>
required

Unique identifier (UUID) of the user who mails the check.

Body

application/json
payee_id
string<uuid4>
required

Unique identifier (UUID) of the recipient who will receive the physical check.

Example:

"f47ac10b-****-****-****-0e02b2c3d479"

amount
number
required

Payment amount in USD. Must be at least $1.00.

Required range: x >= 1
Example:

150

payee_address_id
string<uuid4>
required

UUID of the recipient's mailing address where the physical check will be sent.

Example:

"f47ac10b-****-****-****-0e02b2c3d479"

invoice_no
string | null

Invoice or reference number that will appear on the check for tracking purposes.

Maximum string length: 20
Example:

"INV-2024-001234"

description
string | null

Optional memo or description that will appear on the check.

Maximum string length: 255
Example:

"Payment for consulting services"

mail_type
enum<string>
default:USPS_FIRST_CLASS

Delivery method for the physical check. Options: USPS_FIRST_CLASS (default), USPS_CERTIFIED, OVERNIGHT, TWO_DAY. Different mail types have different processing fees.

Available options:
USPS_FIRST_CLASS,
USPS_CERTIFIED,
TWO_DAY,
OVERNIGHT
Example:

"USPS_FIRST_CLASS"

payment_method
enum<string>
default:WALLET

Payment source for the check amount and fees. Currently only WALLET is supported.

Available options:
WALLET
Example:

"WALLET"

remittance
RemittanceAdvice · object[] | null

Optional list of remittance details to include with the check (maximum 50 items). Useful for invoice breakdowns or payment details.

attachment_url
string | null

Optional HTTPS URL of a PDF document to attach to the check. Must be a valid PDF, maximum 7MB, up to 10 pages. Additional fees apply per page.

Example:

"https://example.com/documents/invoice.pdf"

Response

Successful Response

success
boolean
default:true

Indicates whether the request was processed successfully.

Example:

true

message
string
default:Success

A short, human-readable message describing the result of the request.

Example:

"Operation completed."

data
ExternalCheckPaymentRead · object | null

The main response payload, if applicable

queryGeneratedTime
number | null
default:1783679844.273462

The Unix timestamp (in seconds) indicating when the response was generated.

Example:

1718006400