v2
latestOpenAPI 3.1.02026-07-267085761.0 MBCreate Payee Mailing Address
Creates a new address for an existing payee contact.
This endpoint will:
- Verify the payee exists and belongs to the specified user
- Validate the address information and format
- Check that the payee hasn't exceeded the maximum of 5 addresses
- Create and store the new address for future check payments
Each payee can have up to 20 different addresses to support multiple locations or address changes. These addresses can be used when sending physical check payments.
Path parameters
Unique identifier (UUID) of the user
Unique identifier (UUID) of the user
Headers
Unique platform identifier (UUID). You receive this during onboarding. Must be sent with every API request.
Unique platform identifier (UUID). You receive this during onboarding. Must be sent with every API request.
HMAC-SHA256 request signature for authentication. Use your platform secret key to compute it as: METHOD + PATH + QUERY + BODY_HASH.
HMAC-SHA256 request signature for authentication. Use your platform secret key to compute it as: METHOD + PATH + QUERY + BODY_HASH.
Request body
Example request
{
"payee_id": "f47ac10b-****-****-****-0e02b2c3d479",
"name": "John",
"last_name": "Smith",
"address_line_1": "123 Main Street, Apt 4B",
"address_line_2": "123 Main Street, Apt 4B",
"company_name": "Meta Corp",
"city": "New York",
"state": "NY",
"zipcode": "10001",
"country": "United States"
}Response
Successful Response
Example response
{
"success": true,
"message": "Operation completed.",
"data": {
"address_id": "a1b2c3d4-****-****-****-e5f6g7h8i9j0",
"fist_name": "John",
"last_name": "Doe",
"address_line_1": "123 Main Street, Apt 4B",
"address_line_2": "123 Main Street, Apt 4B",
"company_name": "Meta Corp",
"city": "New York",
"state": "NY",
"zipcode": "10001",
"country": "United States",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:00Z"
},
"queryGeneratedTime": 1718006400
}