Skip to main content
GET
/
customers
Get all customers
curl --request GET \
  --url https://api.gnosisramp.io/v1/customers \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "id": "user_12345",
    "createdAt": "2024-01-01T00:00:00.000Z",
    "updatedAt": "2024-01-01T00:00:00.000Z",
    "organizationId": "org_123456",
    "projectId": "proj_123456",
    "metadata": {}
  }
]

Authorizations

Authorization
string
header
required

HTTP Basic authentication using project clientId and clientSecret

Response

List of customers

id
string
required

Unique customer identifier (same as the id provided in the request)

Example:

"user_12345"

createdAt
string<date-time>
required

Customer creation timestamp

Example:

"2024-01-01T00:00:00.000Z"

updatedAt
string<date-time>
required

Customer last update timestamp

Example:

"2024-01-01T00:00:00.000Z"

organizationId
string
required

Organization identifier

Example:

"org_123456"

projectId
string
required

Project identifier

Example:

"proj_123456"

metadata
object

Additional customer metadata