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
status
string

Status e.g. open/scheduled/closed

schedule
string

Schedule of the consultation

location
string

Physical location or online

url
string

URL

title
string

Title of the consultation

description
string

Description of the consultation

notes
string

Internal notes

product_id
string

Product ID

consultant_ids
string[]

Consultants id array

client_ids
string[]

Clients id array

Response

200
application/json
OK Response
result
string
required