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

List Media Types

Get a list of media types available at FinerWorks.

Body

Name Description Type Additional information
ids Optional list of media ids if you wish to filter the list. array (number) None.
site_id Optional - The default value is 2. This can be ignored. number None.

Example JSON Body

application/json, text/json

{
  "ids": [
    1,
    2
  ],
  "site_id": 1
}

Sample Code Library

curl --location --request POST 'https://test-api.finerworks.com/v3/list_media_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
  ],
  "site_id": 1
}'