POST
/
v1
/
apps
/
create
curl --request POST \
  --url https://api.pulze.ai/v1/apps/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "app_logo": "<string>"
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_key": "<string>",
  "key_end": "<string>",
  "name": "<string>",
  "description": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string | null
description
string | null

Response

200
application/json
Successful Response
id
string
required
org_id
string
required
created_key
string | null
key_end
string | null
name
string
description
string | null