arrow_back Back to all endpoints
PUT https://test-api.finerworks.com/v3/update_app_details

Update App Details

Updates the details assigned to the app_key being used.

Body

Name Description Type Additional information
app_details Details about the app that your app_key is assigned to. app

Required

Example JSON Body

application/json, text/json

{
  "app_details": {
    "app_key": "sample string 1",
    "app_name": "sample string 2",
    "app_description": "sample string 3",
    "app_misc_data": "sample string 4",
    "app_live_mode": true
  }
}

Sample Code Library

curl --location --request PUT 'https://test-api.finerworks.com/v3/update_app_details' \
--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_details": {
    "app_key": "sample string 1",
    "app_name": "sample string 2",
    "app_description": "sample string 3",
    "app_misc_data": "sample string 4",
    "app_live_mode": true
  }
}'