Description
Use a HTTP POST request to create a global resource.
Request
HTTP Method: POST
Parameter | Description |
---|---|
name | Name of the global resource. |
value_type | Global resource type, either: text , json or array . |
value | Contents of the global resource. |
Sample request
curl -X POST \
https://<tenant-name>.tines.io/api/v1/global_resources \
-H 'content-type: application/json' \
-H 'x-user-email: <email-address>' \
-H 'x-user-token: <api-token>'
-d '{
"name": "a json resource",
"value_type": "json",
"value":"{\"fizz\":\"buzz\"}"
}'
Response
A successful request will return a JSON object describing the created resource.
Field description
Parameter | Description |
---|---|
id | Global resource ID. |
user_id | ID of user associated with the resource. |
name | Name of the global resource. |
value_type | Global resource type, either: text , json or array |
created_at | ISO 8601 Timestamp representing date and time the resource was created. |
updated_at | ISO 8601 Timestamp representing date and time the resource was last updated. |
Sample response
{
"id": 10,
"user_id": 1,
"name": "a json resource",
"value_type": "json",
"value": "{\"fizz\":\"buzz\"}",
"created_at": "2020-02-05T20:45:42.004Z",
"updated_at": "2020-02-05T20:45:42.004Z"
}