Download OpenAPI specification:
Booleans-as-a-Service provides a simplistic API to create, read, update and delete boolean values.
Create a new Boolean entry
| expires_at | integer <int64> Unix epoch time stamp in seconds, when entry expires. Is prioritized over expires_in. |
| expires_in | integer <int64> Amount of seconds from now until the entry expires |
Create a new Boolean entry in the database
| label | string |
| value | boolean |
{- "label": "A short description",
- "value": true
}{- "id": "asdf1234",
- "label": "A short description",
- "value": true
}Update an existing Boolean entry
| id required | string Example: asdf1234 The ID of the Boolean |
| expires_at | integer <int64> Unix epoch time stamp in seconds, when entry expires. Is prioritized over expires_in. |
| expires_in | integer <int64> Amount of seconds from now until the entry expires |
Create a new Boolean entry in the database
| label | string |
| value | boolean |
{- "label": "A short description",
- "value": true
}{- "id": "asdf1234",
- "label": "A short description",
- "value": true
}