Skip to main content
POST
/
api
/
plan
/
create
Create Consultation Plan
curl --request POST \
  --url https://www.getwith.ai/api/plan/create \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "requestedInfo": "<string>",
  "expertAdvice": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "expertID": "<string>",
  "requestedInfo": [
    {
      "description": "<string>"
    }
  ],
  "expertAdvice": [
    {
      "description": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.getwith.ai/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
name
string
required
description
string
required
requestedInfo
required
expertAdvice
required

Response

200 - application/json

Successful response

id
string
required
name
string
required
description
string
required
expertID
string
required
requestedInfo
object[]
required
expertAdvice
object[]
required