v1
User
Create User
Create a new user or link existing user to developer
post/v1/user
Headers
X-API-Keystring required
Request body
Example request
{
"email": "user@example.com",
"external_id": "user123",
"metadata": {
"name": "John Doe",
"preferences": {
"theme": "dark"
}
},
"type": "developerUser"
}Response
Successful Response
Example response
{
"code": 200,
"created_at": "2024-03-20T10:00:00.000Z",
"email": "user@example.com",
"external_id": "user123",
"metadata": {
"name": "John Doe",
"preferences": {
"theme": "dark"
}
},
"status": "success",
"updated_at": "2024-03-20T10:00:00.000Z",
"user_id": "abc123"
}