/v1/accountsCrear CVU (y alias opcional)
Da de alta una CVU para el titular indicado. Requiere Idempotency-Key. Emite el webhook `account.created`.
Parámetros
| Nombre | En | Tipo | Notas |
|---|---|---|---|
| idempotency-key* | header | string | — |
Request body · CreateAccountDto · requerido
Campos
| Campo | Tipo | Descripción |
|---|---|---|
| cuit* | string | ej. "20370994049" |
| titular* | string | ej. "JUAN PEREZ" |
| tipoPersona* | enum(F | J) | — |
| alias | string | ej. "gallo.juan.perez" |
{
"cuit": "20370994049",
"titular": "JUAN PEREZ",
"tipoPersona": "F",
"alias": "gallo.juan.perez"
}Respuesta 201 · AccountResponse
Campos
| Campo | Tipo | Descripción |
|---|---|---|
| id* | string | ej. "3f6d9c1e-8b2a-4a1f-9c3e-6b7a1d2e5f40" |
| cvu* | string | CVU generada por el banco (22 dígitos). |
| cuit* | string | ej. "20370994049" |
| titular* | string | ej. "JUAN PEREZ" |
| tipoPersona* | enum(F | J) | ej. "F" |
| alias* | object | Alias CBU, null si no fue asignado. |
| status* | enum(active | closed) | ej. "active" |
| createdAt* | string | ej. "2026-07-30T12:00:00.000Z" |
| updatedAt* | string | ej. "2026-07-30T12:00:00.000Z" |
{
"id": "3f6d9c1e-8b2a-4a1f-9c3e-6b7a1d2e5f40",
"cvu": "0000208200000000000147",
"cuit": "20370994049",
"titular": "JUAN PEREZ",
"tipoPersona": "F",
"alias": "gallo.juan.perez",
"status": "active",
"createdAt": "2026-07-30T12:00:00.000Z",
"updatedAt": "2026-07-30T12:00:00.000Z"
}Errores
- 400 — Request inválido
- 401 — API key ausente o inválida