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

Delete Gallery

Delete a personal gallery collection in GeoGalleries.com.

Body

Name Description Type Additional information
id Id of collection. Leave id blank or as 0 if creating a new one. number

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

{
  "id": 1,
  "account_key": "sample string 2"
}

Sample Code Library

curl --location --request DELETE 'https://test-api.finerworks.com/v3/delete_gallery_collection' \
--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 '{
  "id": 1,
  "account_key": "sample string 2"
}'