Skip to content

Field Option Images

Coming soon; contact us if you need access to this API endpoint.

Get field option images

Request

Get Field Option Images in batches

Security
bearerToken
Bodyapplication/jsonrequired
itemsArray of objectsrequired
curl -i -X POST \
  https://api-v2.dash.app/field-option-images \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "items": [
      {
        "batchItemId": 1,
        "fieldOptionId": "1fc6d6c3-c42d-48e2-b0db-5d680a58ca52"
      },
      {
        "batchItemId": 2,
        "fieldOptionId": "1ecabbb8-85d5-11eb-8dcd-0242ac130003"
      },
      {
        "batchItemId": 3,
        "fieldOptionId": "5a2481e0-819f-4b46-a7e6-143f943345f2"
      }
    ]
  }'

Responses

Success

Bodyapplication/json
successesobjectrequired

A map of successful results keyed on the batchItemId provided in the request

failuresobjectrequired

A map of failues keyed on the batchItemId provided in the request

Response
{ "successes": { "1": {}, "2": {} }, "failures": { "3": "FIELD_OPTION_IMAGE_DOES_NOT_EXIST" } }