For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Visit appVisit websiteBook a demo
  • Get Started
    • Welcome
  • Authentication
    • Hirer Service Accounts
  • Concepts
    • Introduction
    • Directory & Contractors
    • Contracts
    • Approvals
    • Timesheeting
    • Checklists
  • Webhooks
    • Portal Access
    • Endpoint Setup
    • Securing Your Endpoints
    • Monitoring, Debugging & Recovery
  • Client API
      • GETList client data lists
      • POSTUpdate a client data list by ID
      • POSTUpdate a client data list by external ID
    • Webhook Events
LogoLogo
Visit appVisit websiteBook a demo
Client APIClient Data Lists

List client data lists

GET
https://api.yunojuno.com/client_data_lists/
GET
/client_data_lists/
$curl https://api.yunojuno.com/client_data_lists/ \
> -H "Authorization: Bearer <token>"
200Retrieved
1{
2 "data": {
3 "client_data_lists": [
4 {
5 "client_data_list_id": "string",
6 "name": "string",
7 "description": "string",
8 "can_be_updated_via_api": true
9 }
10 ]
11 }
12}

List the client data lists available to your account.

Return the set of data lists available to your client account. Client data lists back dropdowns and validations across YunoJuno (e.g. departments, cost centres). This endpoint enumerates which lists you can manage via the API; it does not return the full list contents.

Was this page helpful?
Previous

Update a client data list by ID

Next
Built with

Authentication

AuthorizationBearer

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

Response

dataobject