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
      • GETRetrieve a contract
      • GETRetrieve a contract offer checklist
      • GETRetrieve a contract acceptance checklist
      • POSTUpdate a contract's custom fields
      • POSTUpdate a contract's purchase order
      • GETRetrieve a contract's timesheets
    • Webhook Events
LogoLogo
Visit appVisit websiteBook a demo
Client APIContracts

Retrieve a contract acceptance checklist

GET
https://api.yunojuno.com/contracts/:contract_id/checklists/accept/
GET
/contracts/:contract_id/checklists/accept/
$curl https://api.yunojuno.com/contracts/contract_id/checklists/accept/ \
> -H "Authorization: Bearer <token>"
200Retrieved
1{
2 "data": {
3 "overall_result": "WARNING",
4 "is_blocking": false,
5 "results": [
6 {
7 "result": "WARNING",
8 "is_blocking": false,
9 "actor_copy": {
10 "freelancer": {
11 "title": "Bank details recommended",
12 "message": "You can still review this contract, but add bank details soon."
13 },
14 "hirer": null
15 }
16 }
17 ]
18 }
19}

Retrieve the live acceptance checklist for a contract.

This endpoint evaluates the current acceptance checklist state without mutating the contract. The response preserves actor-specific copy for both freelancer and hirer audiences where each variant is defined.

Was this page helpful?
Previous

Update a contract's custom fields

Next
Built with

Authentication

AuthorizationBearer

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

Path parameters

contract_idstringRequiredformat: "^ct_c[a-z0-9]{24}$"

Response

dataobject