Country:
/v1/users
Crear un nuevo usuario
Crea un nuevo usuario en el sistema.
id
Optional user ID. If not provided, the system may generate one.
Optional user ID. If not provided, the system may generate one.
Response Examples
201
User created successfully
{
"id": "example_string",
"metadata": null,
"instruments": [
null
],
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:00Z"
}400
Bad Request
{}500
Internal Server Error
{}Language
Login required to test API
Code Examples
cURL
curl -X POST "https://api.akua.la/v1/users" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"metadata": {}
}''