Create a model with data given in the request body.

POST /data/subscriptions/

JSON format is expected. The model performs the validation automatically when instantiated.

Body

Responses

POST /data/subscriptions/
curl \
 -X POST http://localhost:8080/api/data/subscriptions/ \
 -H "Authorization: $API_KEY" \
 -d '{"data":["string"],"total":42,"nb_pages":42,"limit":42,"offset":42,"page":42}'
Request example
{
  "data": [
    "string"
  ],
  "total": 42,
  "nb_pages": 42,
  "limit": 42,
  "offset": 42,
  "page": 42
}