arrow_back Back to all endpoints
POST https://test-api.finerworks.com/v3/list_gallery_themes

List Themes

Returns a list of themes used in GeoGalleries.

Body

Name Description Type Additional information
filter An optional list of themes by slug (theme nickname) array (text) None.

Example JSON Body

application/json, text/json

{
  "filter": [
    "sample string 1",
    "sample string 2"
  ]
}

Sample Code Library

curl --location --request POST 'https://test-api.finerworks.com/v3/list_gallery_themes' \
--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 '{
  "filter": [
    "sample string 1",
    "sample string 2"
  ]
}'