Trifaco API
Autorizaciones de firma

Revocar autorización de firma

POST/v1/signing-authorizations/{id}/revocation

Estado: parcial. Ambientes: simulation, qualification. Permisos: signing:authorize.

Alcance: Requiere If-Match e idempotencia; revoca la autorización y bloquea sus certificados y trabajos de firma pendientes en una misma operación.

Revocar autorización de firma

Authorization

ClientApiKey
X-API-Key<token>

Secreto ligado a empresa, actor, permisos y ambiente. No admite cambiar empresa por body/header.

In: header

Path Parameters

id*string

Identificador opaco. No autoriza acceso por sí mismo.

Formatuuid
Length1 <= length <= 36

Header Parameters

Idempotency-Key*string

Obligatoria en mutaciones. Alcance: empresa/ambiente/operación/recurso destino. Retención mínima 90 días y mientras haya trabajo pendiente. Mismo contenido recupera resultado; contenido diferente produce 409.

Match^[A-Za-z0-9][A-Za-z0-9._:-]{7,127}$
Length1 <= length <= 128
If-Match*string

ETag de versión vigente. Replay idempotente se resuelve ANTES de revalidar If-Match; un comando nuevo con versión antigua produce 409 VERSION_CONFLICT.

Match^"[1-9][0-9]*"$
Length1 <= length <= 30

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/signing-authorizations/497f6eca-6276-4993-bfeb-53cbbbba6f08/revocation" \  -H "Idempotency-Key: string" \  -H "If-Match: string" \  -H "Content-Type: application/json" \  -d '{    "reason": "string"  }'
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "signer_identification": {    "check_digit": "s",    "type_code": "31",    "number": "string"  },  "evidence_id": "5360afe2-6320-4611-b2b1-06edeee7fc1e",  "document_types": [    "invoice"  ],  "expires_at": "2019-08-24T14:15:22Z",  "status": "pending",  "review": {    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",    "decision": "verified",    "certificate_id": "620df92a-0599-41ff-b912-58ec0e5bd21f",    "fingerprint_sha256": "string",    "reviewed_at": "2019-08-24T14:15:22Z",    "valid_until": "2019-08-24T14:15:22Z"  },  "version": 1,  "created_at": "2019-08-24T14:15:22Z"}