GET
/
v1
/
assistants
/
{assistant_id}
curl --request GET \
  --url https://api.pulze.ai/v1/assistants/{assistant_id} \
  --header 'Authorization: Bearer <token>'
{
  "name": "<string>",
  "avatar": "<string>",
  "description": "<string>",
  "visibility": "private",
  "definition_visibility": "private",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "app_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "slug": "<string>",
  "owner_org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "owner_org_name": "<string>",
  "owned_by_current_org": true,
  "owned_by_current_app": true,
  "current_app_default": true,
  "favorite": true,
  "assistant_config": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

assistant_id
string
required

Response

200
application/json
Successful Response
name
string
required
id
string
required
app_id
string
required
slug
string
required
owner_org_id
string
required
owner_org_name
string
required
owned_by_current_org
boolean
required
avatar
string | null
description
string | null
visibility
enum<string>
Available options:
public,
organization,
private
definition_visibility
enum<string>
Available options:
public,
organization,
private
owned_by_current_app
boolean | null
current_app_default
boolean | null
favorite
boolean | null
assistant_config
object | null