Skip to main content
PUT
/
v2
/
custom-services
/
{id}
Update Custom Service
curl --request PUT \
  --url https://public.api.serval.com/v2/custom-services/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "domain": "<string>"
}
'
{
  "data": {
    "id": "<string>",
    "teamId": "<string>",
    "name": "<string>",
    "domain": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The ID of the custom service.

Body

application/json
name
string

The name of the custom service.

domain
string

The domain for branding/logo lookup.

Response

Success

data
data · object

The updated custom service.