Revoke consent
Revoke a previously authorized PSD2_AIS consent
Request
Path Parameters
The unique identifier of the consent
Header Parameters
Specifies the API version to use. Must match the version of the endpoint you are targeting.
2026-04-01.Responses
Consent revocation processed successfully.
Body
Authentication instructions. Present during AWAITING_AUTHORIZATION status.
Properties below are from the SwedishBankIdAutostartToken subtype. View the full schema for full details.
Swedish BankID autostart token authentication instructions
Auto-start token for Swedish BankID authentication
The company identifier
The unique identifier of the consent
Timestamp when the consent was created
Error details. Present when status is FAILED.
Expiration timestamp of the consent. Present only when status is AUTHORIZED.
Recommended polling interval in milliseconds. Present for non-terminal statuses.
Timestamp when the consent was revoked. Present only when status is REVOKED.
The consent scope details
Properties below are from the Psd2AisConsentScopeDto subtype. View the full schema for full details.
PSD2 AIS consent scope with account access details
The current status of the consent
INITIATED, AWAITING_AUTHORIZATION, AUTHORIZED, REVOKED, EXPIRED or FAILED.Timestamp when the status was last changed
curl https://api.insurely.com/consents/{consentId} \
-H "Authorization: Bearer <jwt-token>" \
-X DELETE{
"company": "se-nordea",
"consentId": "550e8400-e29b-41d4-a716-446655440000",
"createdAt": "2026-01-15T10:30:00Z",
"pollingInterval": null,
"scope": {
"accountIds": [
"SE1234567890"
],
"balances": true,
"transactions": true,
"type": "PSD2_AIS"
},
"status": "REVOKED",
"statusChangedAt": "2026-02-27T14:00:00Z"
}