POST /inventory-feed-files.json

POST /inventory-feed-files.json
application/json

Body Required

  • fileType string | null

    File type

    Values are json, csv, or xml.

  • fileUri string | null

    File uri

  • inventoryFeedId integer(int32) Required

    Inventory feed

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
    • createdAt string(date-time)

      Created at

    • fileType string | null

      File type

      Values are json, csv, or xml.

    • fileUri string | null

      File uri

    • id integer(int32)

      Id

    • inventoryFeedId integer(int32) Required

      Inventory feed

    • updatedAt string(date-time)

      Updated at

POST /inventory-feed-files.json
curl \
 --request POST 'http://api.example.com/v1/inventory-feed-files.json' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"fileType":"json","fileUri":"string","inventoryFeedId":42}'
Request examples
{
  "fileType": "json",
  "fileUri": "string",
  "inventoryFeedId": 42
}
Response examples (200)
{
  "createdAt": "2025-05-04T09:42:00Z",
  "fileType": "json",
  "fileUri": "string",
  "id": 42,
  "inventoryFeedId": 42,
  "updatedAt": "2025-05-04T09:42:00Z"
}