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
    • Webhook Events
      • GETRetrieve a spend requisition
LogoLogo
Visit appVisit websiteBook a demo
Client APISpend Requisitions

Retrieve a spend requisition

GET
https://api.yunojuno.com/spend_requests/:spend_request_id/
GET
/spend_requests/:spend_request_id/
$curl https://api.yunojuno.com/spend_requests/spend_request_id/ \
> -H "Authorization: Bearer <token>"
200Retrieved
1{
2 "data": {
3 "spend_request_id": "string",
4 "url": "string",
5 "external_id": "string",
6 "title": "string",
7 "description": "string",
8 "amount": "string",
9 "amount_type": "DAY_RATE",
10 "currency": "AUD",
11 "custom_fields": [
12 {
13 "name": "string",
14 "value": "string",
15 "metadata": null
16 }
17 ],
18 "approval_flow": {
19 "approval_flow_id": "string",
20 "current_approval_step": {
21 "approval_step_id": "string"
22 }
23 }
24 }
25}

Retrieve a spend requisition by its ID.

Spend requisitions are pre-contract funding requests that flow through approvals. Use this endpoint to fetch the latest authoritative server-side representation after creation or approval.

Note: Spend Requisition was previously named Spend Request. Some programmatic names use the old terminology.

Was this page helpful?
Previous
Built with

Authentication

AuthorizationBearer

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

Path parameters

spend_request_idstringRequiredformat: "^spreq_c[a-z0-9]{24}$"

Response

dataobject

The spend requisition object.

This object represents a request to commit spend on the YunoJuno platform. Spend Requisition was previously named Spend Request in the API documentation; some programmatic names use the old terminology.