Gen AI Builder v2023-09-19
Adapted from the Griptape AI Framework documentation.
Scroll down for example requests and responses.
Base URLs:
Authentication
- HTTP Authentication, scheme: Bearer HTTP Bearer authentication
Default
ListUsers
GET /users
Example responses
200 Response
{ "properties": { "users": { "items": { "properties": { "created_at": { "format": "date-time", "type": "string" }, "email": { "type": "string" }, "name": { "type": "string" }, "organizations": { "items": { "pattern": "^[0-9(a-f|A-F)]{8}-[0-9(a-f|A-F)]{4}-4[0-9(a-f|A-F)]{3}-[89ab][0-9(a-f|A-F)]{3}-[0-9(a-f|A-F)]{12}$", "type": "string" }, "type": "array" }, "updated_at": { "format": "date-time", "type": "string" }, "user_id": { "pattern": "^[0-9(a-f|A-F)]{8}-[0-9(a-f|A-F)]{4}-4[0-9(a-f|A-F)]{3}-[89ab][0-9(a-f|A-F)]{3}-[0-9(a-f|A-F)]{12}$", "type": "string" } }, "required": [ "created_at", "email", "organizations", "updated_at", "user_id" ], "type": "object" }, "type": "array" } }, "type": "object" }
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | ListUsers 200 response | ListUsersResponseContent |
400 | Bad Request | ClientError 400 response | ClientErrorResponseContent |
500 | Internal Server Error | ServiceError 500 response | ServiceErrorResponseContent |
Warning
To perform this operation, you must be authenticated by means of one of the following methods: smithy.api.httpBearerAuth
ApiKeys
DeleteApiKey
DELETE /api-keys/{api_key_id}
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
api_key_id | path | string | true | none |
Example responses
400 Response
{ "properties": { "errors": { "items": {}, "type": "array" }, "type": { "type": "string" } }, "required": [ "type" ], "type": "object" }
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | DeleteApiKey 204 response | None |
400 | Bad Request | ClientError 400 response | ClientErrorResponseContent |
500 | Internal Server Error | ServiceError 500 response | ServiceErrorResponseContent |
Warning
To perform this operation, you must be authenticated by means of one of the following methods: smithy.api.httpBearerAuth
GetApiKey
GET /api-keys/{api_key_id}
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
api_key_id | path | string | true | none |
Example responses