Payment Customers
Retrieve a Payment Customer
Retrieve a Payment Customer by their ID.
GET
/
v2
/
payment-customers
/
{payment_customer_id}
Authorization
Path
curl --request GET \
--url https://api.senddotssandbox.com/api/v2/payment-customers/{payment_customer_id} \
--header 'Authorization: <authorization>'
{
"country_code": "string",
"created": "string",
"email": "string",
"first_name": "string",
"id": "string",
"last_name": "string",
"metadata": "object",
"middle_name": "string",
"phone_number": "string",
"updated": "string",
"user_id": "string"
}
Authorizations
Authorizationheaderrequired
string
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Path Parameters
payment_customer_idrequired
string
The ID of the payment customer
Response
200 - application/json
country_code
string
created
string
email
string
first_name
string
id
string
last_name
string
metadata
object
middle_name
string
phone_number
string
updated
string
user_id
string
curl --request GET \
--url https://api.senddotssandbox.com/api/v2/payment-customers/{payment_customer_id} \
--header 'Authorization: <authorization>'
{
"country_code": "string",
"created": "string",
"email": "string",
"first_name": "string",
"id": "string",
"last_name": "string",
"metadata": "object",
"middle_name": "string",
"phone_number": "string",
"updated": "string",
"user_id": "string"
}