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

List Static Products

Returns a list of non-dynamic products. These are generally accessory products.

Body

Request to be submitted

Name Description Type Additional information
ids Optional - This can be the ids assigned to the static.. array (number) None.
account_key Optional - This will only be accepted for accounts with permission to utilize this parameter, otherwise it will be ignored and any submit orders will be based upon the user's api credentials. Leave as null or ignore if not explicitly required to use this parameter. text None.

Example JSON Body

application/json, text/json

{
  "ids": [
    1,
    2
  ],
  "account_key": "sample string 1"
}

Sample Code Library

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