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
| Name | Description | Type | Additional 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": "d5ff1c28-def0-441e-8275-b3160bcaa22e",
"name": "sample string 2",
"state": 3,
"date_create": "2025-07-26T18:23:10.902143+02:00",
"project_id": "358b5cf8-8eb6-41b7-ba25-9d9598ebfaac",
"identity_id": "bb219451-2795-4e90-a963-9dade228d9b1",
"community_name": "sample string 7"
}
Response Information
Resource Description
| Description | Type |
|---|---|
|
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...
