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": "6c68a765-a9a2-4216-af29-42a36a382485", "name": "sample string 2", "state": 3, "date_create": "2025-03-17T17:16:38.7671431+01:00", "project_id": "43afdae4-a7ec-49a6-b5fe-613a6b87f214", "identity_id": "def3ed37-34fc-4b76-b24a-69a88a16745b", "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...