GET
/
ramp
/
customer
/
{customer_id}
Get customer details
curl --request GET \
  --url https://api.etherfuse.com/ramp/customer/{customer_id} \
  --header 'Authorization: <api-key>'
{
  "customerId": "123e4567-e89b-12d3-a456-426614174000",
  "displayName": "John Doe",
  "createdAt": "2024-01-01T00:00:00Z",
  "updatedAt": "2024-01-01T00:00:00Z"
}

Authorizations

Authorization
string
header
required

API key for authentication

Path Parameters

customer_id
string<uuid>
required

ID of the customer to retrieve

Response

Customer details retrieved successfully

customerId
string<uuid>

Unique identifier for the customer

displayName
string | null

Display name of the customer

createdAt
string<date-time>

Timestamp when the customer was created

updatedAt
string<date-time>

Timestamp when the customer was last updated