Skip to main content
PATCH
/
api
/
v1
/
accounts
/
{account_id}
/
providers
/
{id}
Update provider
curl --request PATCH \
  --url https://connect.voxys.ai/api/v1/accounts/{account_id}/providers/{id} \
  --header 'Content-Type: application/json' \
  --header 'api_access_token: <api-key>' \
  --data '
{
  "name": "<string>",
  "specialty": "<string>",
  "email": "jsmith@example.com",
  "phone": "<string>",
  "color": "#10B981",
  "is_active": true,
  "service_ids": [
    123
  ]
}
'
{
  "id": 123,
  "name": "<string>",
  "specialty": "<string>",
  "email": "jsmith@example.com",
  "phone": "<string>",
  "color": "#10B981",
  "is_active": true,
  "service_ids": [
    123
  ],
  "created_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://developers.voxys.ai/llms.txt

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

Authorizations

api_access_token
string
header
required

All API requests must include the api_access_token header with a valid agent or administrator token.

Body

application/json
name
string
required
specialty
string
email
string<email>
phone
string
color
string
Example:

"#10B981"

is_active
boolean
default:true
service_ids
integer[]

IDs of services this provider offers

Response

Provider updated

id
integer
name
string
specialty
string
email
string<email>
phone
string
color
string
Example:

"#10B981"

is_active
boolean
service_ids
integer[]
created_at
string<date-time>