Resources
Copy page
Operations for fetching resources and data
List All Agents
Authorization
bearerAuth cookieAuth Bearer token authentication. Use this for API clients and service-to-service communication. Set the Authorization header to "Bearer ".
In: header
Session-based authentication using HTTP-only cookies. Cookies are automatically sent by browsers. For server-side requests, include cookies with names starting with "better-auth." in the Cookie header.
In: cookie
Query Parameters
"default"Response Body
application/json
curl -X GET "https://api.pilot.inkeep.com/work-apps/slack/agents"{
"agents": [
{
"id": "string",
"name": "string",
"projectId": "string",
"projectName": "string"
}
]
}List Projects
Authorization
bearerAuth cookieAuth Bearer token authentication. Use this for API clients and service-to-service communication. Set the Authorization header to "Bearer ".
In: header
Session-based authentication using HTTP-only cookies. Cookies are automatically sent by browsers. For server-side requests, include cookies with names starting with "better-auth." in the Cookie header.
In: cookie
Query Parameters
"default"100Response Body
application/json
curl -X GET "https://api.pilot.inkeep.com/work-apps/slack/projects"{
"projects": [
{
"description": "string",
"id": "string",
"name": "string"
}
]
}List Agents in Project
Authorization
bearerAuth cookieAuth Bearer token authentication. Use this for API clients and service-to-service communication. Set the Authorization header to "Bearer ".
In: header
Session-based authentication using HTTP-only cookies. Cookies are automatically sent by browsers. For server-side requests, include cookies with names starting with "better-auth." in the Cookie header.
In: cookie
Path Parameters
Query Parameters
"default"Response Body
application/json
curl -X GET "https://api.pilot.inkeep.com/work-apps/slack/projects/:projectId/agents"{
"agents": [
{
"id": "string",
"name": "string",
"projectId": "string",
"projectName": "string"
}
]
}