GET
/
v1
/
apps
/
{app_id}
/
assistants
/
{assistant_id}
/
versions
/
{version_id}
curl --request GET \
  --url https://api.pulze.ai/v1/apps/{app_id}/assistants/{assistant_id}/versions/{version_id} \
  --header 'Authorization: Bearer <token>'
{
  "persona": "<string>",
  "instructions": "<string>",
  "greeting": "<string>",
  "writing_style": "<string>",
  "sample_interactions": "<string>",
  "model_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "temperature": 123,
  "max_tokens": 123,
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "assistant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "published": true,
  "auth0_id": "<string>",
  "added_on": "2023-11-07T05:31:56Z",
  "modified_on": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

app_id
string
required
assistant_id
string
required
version_id
string
required

Response

200
application/json
Successful Response
id
string
required
assistant_id
string
required
published
boolean
required
auth0_id
string | null
required
added_on
string
required
modified_on
string
required
persona
string | null
instructions
string | null
greeting
string | null
writing_style
string | null
sample_interactions
string | null
model_id
string | null
temperature
number | null
max_tokens
integer | null