organization_id
as a path parameter to identify the organization whose tools are to be fetched.curl --location -g --request GET 'https:///v2/api/organization/1/tool' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer '
{
"success": true,
"message": "Tools found successfully.",
"data": {
"count": 27,
"num_pages": 1,
"current_page": 1,
"tools": [
{
"id": 58,
"name": "test tool API",
"description": "",
"org": 1,
"tool_type": "api",
"created_by": "yumna@example.com",
"is_enabled": true,
"is_default": false,
"connection": false
}
]
}
}