Productsup

Write to output file

POST
/output/{type}

Path Parameters

type*string
Match^output|feedback$

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://loading/output/string" \  -H "Content-Type: application/json" \  -d '{    "meta": {      "separator": "-"    },    "data": [      {        "id": 1,        "taxon-0-id": 11,        "taxon-0-name": "taxon0"      }    ]  }'
{
  "message": "Written successfully."
}
{
  "message": "Validation failed",
  "errors": {
    "data": "This value should be an array of items."
  }
}
{
  "message": "File size reached maximum."
}

How is this guide?