Fetch all variables for a specific org.
curl --request GET \
--url https://api.useinvent.com/orgs/{org_id}/variables \
--header 'Authorization: Bearer <token>'[
{
"key": "<string>",
"value": "<string>",
"secret": true
}
]Bearer token authentication using your API key
The ID of the org
Page number
Number of items to take
Next page token (Only used on special endpoints)
Was this page helpful?
curl --request GET \
--url https://api.useinvent.com/orgs/{org_id}/variables \
--header 'Authorization: Bearer <token>'[
{
"key": "<string>",
"value": "<string>",
"secret": true
}
]