Last updated 4 months ago
curl -L \ --url 'https://api.erathos.com/developers/workspaces/{workspace_id}/variables/{_id}/' \ --header 'Authorization: YOUR_API_KEY'
{ "_id": "123e4567-e89b-12d3-a456-426614174000", "_created_at": "2025-04-03T06:56:46.271Z", "_updated_at": "2025-04-03T06:56:46.271Z", "name": "text", "value": "text" }
curl -L \ --request DELETE \ --url 'https://api.erathos.com/developers/workspaces/{workspace_id}/variables/{_id}/' \ --header 'Authorization: YOUR_API_KEY'
No body
Which field to use when ordering the results.
A page number within the paginated result set.
Number of results to return per page.
curl -L \ --url 'https://api.erathos.com/developers/workspaces/{workspace_id}/variables/' \ --header 'Authorization: YOUR_API_KEY'
{ "count": 50, "next_page": 3, "previous_page": 1, "page_size": 10, "total_pages": 5, "current_page": 2, "results": [ { "_id": "123e4567-e89b-12d3-a456-426614174000", "_created_at": "2025-04-03T06:56:46.271Z", "_updated_at": "2025-04-03T06:56:46.271Z", "name": "text", "value": "text" } ] }
curl -L \ --request POST \ --url 'https://api.erathos.com/developers/workspaces/{workspace_id}/variables/' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "name": "text", "value": "text" }'
curl -L \ --request PUT \ --url 'https://api.erathos.com/developers/workspaces/{workspace_id}/variables/{_id}/' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "value": "text" }'
{ "_id": "123e4567-e89b-12d3-a456-426614174000", "_created_at": "2025-04-03T06:56:46.271Z", "_updated_at": "2025-04-03T06:56:46.271Z", "value": "text" }