arrow_back Back to all endpoints
DELETE https://test-api.finerworks.com/v3/delete_app_key

Delete App Key

Permanently deletes an app_key from your account. This cannot be undone.

Body

Name Description Type Additional information
app_key App key globally unique identifier

Required

account_key Optional - User account associated with the request. Note, this will only be accepted for accounts with permission to utilize this parameter, otherwise it will be ignored and the request will based upon the user's api credentials. Leave as null if not authorized to use this parameter. text None.

Example JSON Body

application/json, text/json

{
  "app_key": "17553a7e-8b57-4d70-bb48-bfd6ba604310",
  "account_key": "sample string 2"
}

Sample Code Library

curl --location --request DELETE 'https://test-api.finerworks.com/v3/delete_app_key' \
--header 'Content-Type: application/json' \
--header 'web_api_key: my-web-api-key-goes-here' \
--header 'app_key: my-app-key-goes-here' \
--data-raw '{
  "app_key": "17553a7e-8b57-4d70-bb48-bfd6ba604310",
  "account_key": "sample string 2"
}'