Skip to main content
GET
/
v1
/
customers
/
{id}
Get a customer
curl --request GET \
  --url https://api.plexospay.com/v1/customers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "cu_abc123",
  "phone": "+2389001234",
  "operator": "CVMOVEL",
  "country": "CV",
  "name": "<string>",
  "email": "<string>",
  "metadata": {},
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

API key starting with sk_live_ or sk_test_

Path Parameters

id
string
required

Response

200 - application/json

Customer details

id
string
Example:

"cu_abc123"

phone
string
Example:

"+2389001234"

operator
enum<string>

Mobile money operator

Available options:
CVMOVEL,
UNITEL_TMAIS,
MOCK
country
enum<string>

ISO 3166-1 alpha-2 country code

Available options:
CV,
AO
name
string | null
email
string | null
metadata
object

Arbitrary key-value metadata (max 50 keys)

createdAt
string<date-time>
updatedAt
string<date-time>