GET
/
tool
List Tools
curl --request GET \
  --url https://api.clarionhealth.com/v1/tool \
  --header 'Authorization: Bearer <token>'
[
  {
    "async": false,
    "type": "function",
    "id": "<string>",
    "orgId": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "function": {
      "strict": false,
      "name": "<string>",
      "description": "<string>",
      "parameters": {
        "type": "object",
        "properties": {},
        "required": [
          "<string>"
        ]
      }
    }
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

The response is of type FunctionTool · object[].