Skip to main content
GET
/
v2
/
guidances
List Guidances
curl --request GET \
  --url https://public.api.serval.com/v2/guidances \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "teamId": "<string>",
      "name": "<string>",
      "description": "<string>",
      "content": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

teamId
string

The ID of the team.

Response

Success

data
Guidance · object[]

The list of guidances.

I