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

List Frame Collections

List all available frame categories .

Body

Name Description Type Additional information
id Optional - Filter by collection id. Required in order to get a list of available frames in this collection. number None.
product_code Optional - Filter by product code if you want to only show collections / frames that are compatible with your print product. text None.

Example JSON Body

application/json, text/json

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

Sample Code Library

curl --location --request POST 'https://test-api.finerworks.com/v3/list_collections' \
--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,
  "product_code": "sample string 2"
}'