Skip to main content
Weavr API
Setup

Get a user

GET/users/{user_id}

Retrieves the user identified by the user_id path parameter.

Request

Path parameters

Responses

200OK

Success

Headers
Body
application/json
{}
UserUser · object · 13 fields
Response example
{  "id": "string",  "identity": {    "type": "CONSUMER",    "id": "123456789"  },  "name": "string",  "surname": "string",  "email": "[email protected]",  "mobile": {    "countryCode": "+44",    "number": "7700900123"  },  "active": true,  "dateOfBirth": {    "year": 1990,    "month": 1,    "day": 1  },  "tag": "customer-123",  "countryOfResidence": "string",  "locale": "en-GB",  "brand": "string",  "roles": [    "CARD_ASSIGNEE"  ]}