POST
/
consultation
/
edit
/
{company_slug}
/
{consultation_id}
/
curl --request POST \
  --url https://api.hierarch.io/v1/consultation/edit/{company_slug}/{consultation_id}/ \
  --header 'Content-Type: application/json' \
  --header 'token: <api-key>' \
  --data '{
  "status": "<string>",
  "schedule": "<string>",
  "location": "<string>",
  "url": "<string>",
  "title": "<string>",
  "description": "<string>",
  "notes": "<string>",
  "product_id": "<string>",
  "consultant_ids": [
    "<string>"
  ],
  "client_ids": [
    "<string>"
  ]
}'
{
  "result": "<string>"
}

Authorizations

token
string
header
required

API token provided to your company

Path Parameters

company_slug
string
required

This is your company url

consultation_id
string
required

Consultation ID

Body

application/json

Consultation details to edit

The body is of type object.

Response

200
application/json

OK Response

The response is of type object.