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

List Printables

Get a list of printable products available at FinerWorks.

Body

Name Description Type Additional information
ids Optional list of photo item ids if you wish to filter the list. array (number) None.

Example JSON Body

application/json, text/json

{
  "ids": [
    1,
    2
  ]
}

Sample Code Library

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