Create Identity
POST
/identities
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/identities' \
--header 'x-api-key: {{x-api-key}}' \
--header 'User-Agent: ConomyApp/2.1.1' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "USER", // types: USER, ORGANIZATION
"name": "Juan Pérez",
"nickname": "juanp",
"email": "juan.perez-3@example.com",
"phone": "+56912345674", // including +(CountryCode)
"documentType": "RUT", // types: RUT, CURP, DNI
"documentNumber": "123125",
"status": "ACTIVE", // statuses: ACTIVE, PENDING_VALIDATION, BLOCKED
"idv": "iv-23123", //
"country": "CHL", // ISO 3166-1. ex: CHL, USA, ARG, ESP...
"securityOptions": {
"twoFactorEnabled": false
},
"children": []
}'
Response Response Example
{}
Request
Header Params
x-api-key
string
required
Example:
{{x-api-key}}
User-Agent
string
required
Example:
ConomyApp/2.1.1
Body Params application/json
Responses
Modified at 2025-02-02 19:31:49