Get all consumer users
GET/auth/payment-gateway/consumer-users
return only consumer users that have used the current payment gateway at least one time
Responses
- 200
- 401
successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
id uuid
Cents ID of the consumer user
full_name string
first name and last name of the consumer user
email email
email of the consumer user
phone string
phone number of the consumer user with the country code
billable_address
object
street_address stringrequired
city stringrequired
region_state stringrequired
zip_code stringrequired
country stringrequired
[
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"full_name": "Mario Rossi",
"email": "mario@email.com",
"phone": 3933334445555,
"billable_address": {
"street_address": "via Roma 5",
"city": "Milan",
"region_state": "Lombardia",
"zip_code": "20100",
"country": "Italy"
}
}
]
Unauthorized
Loading...