Settings

Endpoints for managing settings

Get all webhook target URLs

get

This endpoint retrieves all webhook target URLs.

Authorizations
x-api-keystringRequired
Responses
200

A list of webhook target URLs

application/json
webhookTargetUrlsobject[]Optional
get
/api/v1/settings/webhook-target-urls

Set webhook target URLs

put

This endpoint allows you to set webhook target URLs.

Authorizations
x-api-keystringRequired
Body
urlsstring · uri[]OptionalExample: http://example.com/webhook
Responses
200

Webhook target URLs set successfully

application/json
webhookTargetUrlsobject[]Optional
put
/api/v1/settings/webhook-target-urls

Get PII settings

get

Retrieve the current PII settings for the wallet.

Authorizations
x-api-keystringRequired
Responses
200

PII settings retrieved successfully

application/json
piiRetentionSecondsintegerOptionalExample: 86400
piiRemoveOnApiAccessbooleanOptionalExample: false
get
/api/v1/settings/pii

Set PII settings

post

Configure PII (Personally Identifiable Information) settings including retention period and removal on API access.

Authorizations
x-api-keystringRequired
Body
piiRetentionSecondsintegerRequired

Number of seconds to retain PII data after a workflow completes. Use 0 to disable automatic removal.

Example: 86400
piiRemoveOnApiAccessbooleanRequired

Whether to remove PII data after it has been accessed via API

Example: false
Responses
200

PII settings updated successfully

application/json
piiRetentionSecondsintegerOptionalExample: 86400
piiRemoveOnApiAccessbooleanOptionalExample: false
post
/api/v1/settings/pii

Remove all stored PII

post

Manually trigger the removal of all stored PII data for this wallet.

Authorizations
x-api-keystringRequired
Responses
200

PII removal completed

application/json
credentialsTotalintegerOptional

Total number of final state credentials checked

credentialsClearedintegerOptional

Number of credentials cleared

credentialFailuresintegerOptional

Number of credentials failed to clear

presentationsTotalintegerOptional

Total number of final state presentations checked

presentationsClearedintegerOptional

Number of presentations cleared

presentationFailuresintegerOptional

Number of presentations failed to clear

post
/api/v1/settings/pii/remove-all

Last updated

Was this helpful?