POST resource/create-massive-load

Creates a new massive data load

Request Information

Headers

HTTP_AUTHORIZATION: Required. OAuth 1.0 parameters with the OAuth signature of the url you are going to request. The consumer keys and access token can be obtained from the community administration.

Sample:
        HTTP_AUTHORIZATION:
            OAuth oauth_token="CObXqjfOisVh9%2F2GjC7NNd8BCzY%3D",
            oauth_consumer_key="clGACsiGaMp%2FD%2BUwkSvRBxA1k50%3D",
            oauth_nonce="VqKza6d5x1HpPQWFe08spbdOnkTQpfaLfD9Oeuyg",
            oauth_signature_method="HMAC-SHA1",
            oauth_timestamp="1462882011",
            oauth_signature="RH5aKKKJaEvK5cIsZZzXtFh7cCk%3D"
    

Body Parameters

NameDescriptionTypeAdditional information
load_id

Load identifier

globally unique identifier

Optional

name

Load name

string

Optional

state

State of the data load

integer

Optional

date_create

Date creation of the data load

date

Optional

project_id

Project identifier

globally unique identifier

Optional

identity_id

Identity identifier

globally unique identifier

Optional

community_name

Short name of the community

string

Optional

Request Formats

application/json, text/json

Sample:
{
  "load_id": "54920e6e-0501-40ee-9edf-b98961600b8b",
  "name": "sample string 2",
  "state": 3,
  "date_create": "2024-03-01T09:40:57.0194115+01:00",
  "project_id": "52e6ee30-a407-4d3a-ace1-6ac6fbecf1d2",
  "identity_id": "80412644-d2fd-4615-936d-4cdfb4e68b47",
  "community_name": "sample string 7"
}

Response Information

Resource Description

DescriptionType

True if the load is added to the sql table

Boolean

Response Formats

application/json, text/json

Sample:
true

Response HTTP status code

On success, the response contains 200 code.

On fail, throws a WebException with code:

  • 401 Unauthorized if the OAuth signature is invalid
  • 400 Bad Request if the params are invalid
  • 500 Internal server error if something goes wrong...