Skip to content

Suggested

API Dashboard
POST /identities/{id}/children

Add children to an identity. The _id as path param is the identityId.

POST/identities/{id}/children
Add Child to Identity Children

Bearer access token returned by the authentication endpoint.

The API key used for authentication when making requests to the API Gateway.

API version selector for Conomy endpoints. Use 24-04-2025 for the current version.

Identifies the application making the request.

Unique identifier for the identity.

Array of identity ids (strings) that are going to be linked as child to the identityId father

idstring

Unique identifier for the internal service.

typestring
USERRepresents an individual with personal identifying information.
ORGANIZATIONA legal entity such as a company, institution, or other juridical person
namestring

The name of the entity (for users) or the official name (for organizations).

nicknamestring

An alternative or preferred name for the entity.

emailstringemail

The email address associated with the entity.

phonestring

the phone number linked to the entity. Include +(phone country code)

documentNumberstring

The document number associated with the entity for identification purposes.

documentTypestring

Documeny type of the entity (e.g., RUT, CURP, CURL). Go to the Supported Identity document types page for the complete list of supported values.

idvstring

Identity verification reference

securityOptionsobject
countrystring

Country of operations for the entity, specified using the ISO 3166-1 alpha-3 standard (e.g., CHL, USA, MEX). Go to the countries page for the complete list of supported values.

childrenobject[]

A list of related entities (e.g., subsidiaries for organizations or dependent users

statusstring

The current status of the entity. PENDING, PENDING_EMAIL_VALIDATION, PENDING_PHONE_VALIDATION, SCREENING, ACTIVE

externalIdstring

External reference ID (client purpose).

lastnamestring

The last name of the user (if applicable).

bankAccountobject

Schema representing a bank account, including essential details about the account holder and financial institution.

rulesobject

Custom rules or policies applicable to the entity.

genderstring

Gender information (if applicable

kycobject

Information related to Know Your Customer (KYC) compliance

watchListobject

Watchlist information for compliance or fraud detection.

extendedDatastring[]

Additional data.

createdAtstringdate-time

Creation date UTC format.

updatedAtstringdate-time

Time of last update made to the entity, UTC format.

addressobject

The entity’s address information.

Request
POST /sandbox/identities/{id}/children HTTP/1.1
Host: api.conomyhq.com
Authorization: Bearer {ACCESS_TOKEN}
x-api-key: {YOUR_API_KEY}
conomyhq-api-version: 24-04-2025
User-Agent: MyApp/1.0
Content-Type: application/json

{
  "children": [
    "1a5925ac-4629-f7bf-db28-ac0f655e3eef",
    "3cbf2e28-ff31-804c-829e-bf97ed3d44a2"
  ]
}
Response
{
  "id": "string",
  "type": "USER",
  "name": "string",
  "nickname": "string",
  "email": "user@example.com",
  "phone": "string",
  "documentNumber": "string",
  "documentType": "string",
  "idv": "string",
  "securityOptions": {}
}