Variables

Create a new variable

post

Create a new variable

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
idstring · uuidOptional

Unique identifier for the variable

Example: cfd531e0-82fc-11e9-bc42-526af7764f64
namestringOptional

Name of the variable

Example: API_KEY
valuestring | nullableOptional

Value of the variable

Example: my-secret-key
typestringOptional

Type of the variable (e.g., string, number)

Example: string
createdDatestring · date-timeOptional

Date and time when the variable was created

Example: 2024-08-24T14:15:22Z
updatedDatestring · date-timeOptional

Date and time when the variable was last updated

Example: 2024-08-24T14:15:22Z
Responses
200

Variable created successfully

application/json
post
/variables

List all variables

get

Retrieve a list of all variables

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200

Successful operation

application/json
get
/variables

Update a variable by ID

put

Update a specific variable by ID

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired

Variable ID

Body
idstring · uuidOptional

Unique identifier for the variable

Example: cfd531e0-82fc-11e9-bc42-526af7764f64
namestringOptional

Name of the variable

Example: API_KEY
valuestring | nullableOptional

Value of the variable

Example: my-secret-key
typestringOptional

Type of the variable (e.g., string, number)

Example: string
createdDatestring · date-timeOptional

Date and time when the variable was created

Example: 2024-08-24T14:15:22Z
updatedDatestring · date-timeOptional

Date and time when the variable was last updated

Example: 2024-08-24T14:15:22Z
Responses
200

Variable updated successfully

application/json
put
/variables/{id}

Delete a variable by ID

delete

Delete a specific variable by ID

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired

Variable ID

Responses
200

Variable deleted successfully

No content

delete
/variables/{id}

No content

Last updated