Skip to main content
GET
/
checklist
/
allsplits
Check All Splits
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/checklist/allsplits \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "p1b2c3d4-e5f6-7890-1234-567890abcdef"
  },
  {
    "id": "p1b2c3d4-e5f6-7890-1234-567890abcdef"
  }
]
This endpoint requires authentication. Include your Bearer token in the Authorization header.

Code Examples

const response = await fetch('https://server26-dot-royalti-project.uc.r.appspot.com/checklist/allsplits', {
  method: 'GET',
  headers: {
    'Authorization': `Bearer ${token}`,
  },
});

const data = await response.json();
console.log(data);

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Response

Successfully retrieved all splits checklist

id
string<uuid>

Split ID