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

Path Parameters

planID
string
required

Body

application/json
name
string
description
string
requestedInfo
object[]
expertAdvice
object[]

Response

200 - application/json

Successful response

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