GET
/
api
/
v1
/
workspaces
/
{workspaceUuid}
/
segments
curl --request GET \
  --url https://app.snitcher.com/api/v1/workspaces/{workspaceUuid}/segments \
  --header 'Authorization: Bearer <token>'
[
  {
    "uuid": "123e4567-e89b-12d3-a456-426614174000",
    "name": "Segment name"
  }
]

Authorizations

Authorization
string
header
required

Enter your personal access token (PAT) to authenticate

Path Parameters

workspaceUuid
string
required

The UUID of the workspace

Example:

"123e4567-e89b-12d3-a456-426614174000"

Response

200 - application/json
List of segments
uuid
string
Example:

"123e4567-e89b-12d3-a456-426614174000"

name
string
Example:

"Segment name"