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

List Style Types

Get a list of style types available at FinerWorks.

Body

Name Description Type Additional information
ids Optional list of style 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_style_types' \
--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
  ]
}'