POST
/
v1
/
apps
/
{app_id}
/
export
curl --request POST \
  --url https://api.pulze.ai/v1/apps/{app_id}/export \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "conversationHistory": true,
  "collections": true,
  "data": true,
  "assistants": true,
  "modelSettings": true,
  "memberSettings": true,
  "submitAsPublic": false
}'
{}

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

Body

application/json
name
string
required
description
string | null
required
conversationHistory
boolean
default:true
collections
boolean
default:true
data
boolean
default:true
assistants
boolean
default:true
modelSettings
boolean
default:true
memberSettings
boolean
default:true
submitAsPublic
boolean
default:false

Response

200
application/json
Successful Response

The response is of type object.