services
Create Service
Create a new service.
post/api/v1/services/
Request body
Example request
{
"name": "Weather tools",
"description": "Service containing tools for fetching weather information",
"auth_values": {
"password": "my-password",
"username": "my-username"
}
}Response
Successful Response
Example response
{
"id": 1,
"name": "Weather tools",
"description": "Service containing tools for fetching weather information",
"auth_value_keys": [
"username",
"password"
],
"last_updated_comments": "Updated description to correct typo",
"last_updated": "2024-01-01T12:00:00Z",
"last_updated_by": "user@email.com",
"tools": [
"hangup",
"summary"
]
}