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
LogoLogo
  • 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
Visit appVisit websiteBook a demo
Client APIContracts

Retrieve a contract offer checklist

GET
https://api.yunojuno.com/contracts/:contract_id/checklists/offer/
GET
/contracts/:contract_id/checklists/offer/
$curl https://api.yunojuno.com/contracts/contract_id/checklists/offer/ \
> -H "Authorization: Bearer <token>"
200Retrieved
1{
2 "data": {
3 "overall_result": "FAIL",
4 "is_blocking": true,
5 "results": [
6 {
7 "result": "FAIL",
8 "is_blocking": true,
9 "actor_copy": {
10 "freelancer": null,
11 "hirer": {
12 "title": "Purchase order required",
13 "message": "Add a purchase order reference before offering."
14 }
15 }
16 }
17 ]
18 }
19}

Retrieve the live offer checklist for a contract.

This endpoint evaluates the same read-only checklist used to determine whether the contract can progress through offer-related actions. The response returns the overall outcome and the ordered per-check results, including both hirer and freelancer copy variants where they exist.

Was this page helpful?
Previous

Retrieve a contract acceptance checklist

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