{"openapi":"3.1.0","info":{"title":"POST /api/v1/vendor-bill-requests","version":"1.0.0","description":"Create a vendor bill-request link"},"servers":[{"url":"https://api.ondayzero.com","description":"Production"}],"paths":{"/api/v1/vendor-bill-requests":{"post":{"tags":["vendor-bill-requests"],"summary":"Create a vendor bill-request link","description":"Mint a public URL a vendor or contractor can use to submit a bill without an account. The raw URL is returned once and cannot be recovered later; only its hash is stored.","operationId":"create_vendor_bill_request_link_api_v1_vendor_bill_requests_post","parameters":[{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}},{"name":"x-business-id","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Business-Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/VendorBillRequestLinkCreateRequest"}}}},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessEnvelope_VendorBillRequestLinkCreateResponse_"}}}},"400":{"description":"Bad Request - Invalid input","content":{"application/json":{"example":{"detail":"Invalid request parameters"}}}},"401":{"description":"Unauthorized - Authentication required","content":{"application/json":{"example":{"detail":"Not authenticated"}}}},"403":{"description":"Forbidden - Insufficient permissions","content":{"application/json":{"example":{"detail":"Not enough permissions"}}}},"404":{"description":"Not Found - Resource does not exist","content":{"application/json":{"example":{"detail":"Resource not found"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"SuccessEnvelope_VendorBillRequestLinkCreateResponse_":{"properties":{"success":{"type":"boolean","title":"Success","default":true},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Code"},"data":{"anyOf":[{"$ref":"#/components/schemas/VendorBillRequestLinkCreateResponse"},{"type":"null"}]}},"additionalProperties":true,"type":"object","title":"SuccessEnvelope[VendorBillRequestLinkCreateResponse]"},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"},"input":{"title":"Input"},"ctx":{"type":"object","title":"Context"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"},"VendorBillRequestLinkCreateRequest":{"properties":{"vendor_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Vendor Id","description":"Pre-bind the link to one vendor. Submissions are attributed to this vendor without any name/email matching. Omit for a general link."},"label":{"anyOf":[{"type":"string","maxLength":120},{"type":"null"}],"title":"Label","description":"Manager-facing label, e.g. 'Q3 contractors'. Shown on the form heading."},"expires_in_days":{"anyOf":[{"type":"integer","maximum":365.0,"minimum":1.0},{"type":"null"}],"title":"Expires In Days","description":"Days until the link stops accepting submissions. Omit for no expiry."}},"type":"object","title":"VendorBillRequestLinkCreateRequest","description":"Mint a new bill-request link for the current business."},"VendorBillRequestLinkCreateResponse":{"properties":{"link":{"$ref":"#/components/schemas/VendorBillRequestLinkResponse"},"url":{"type":"string","title":"Url","description":"Absolute public URL (/submit-bill/{token}). Only returned at creation time — it cannot be recovered later."}},"type":"object","required":["link","url"],"title":"VendorBillRequestLinkCreateResponse","description":"Create result. ``url`` carries the raw token and is shown exactly once."},"VendorBillRequestLinkResponse":{"properties":{"id":{"type":"string","title":"Id"},"business_id":{"type":"string","title":"Business Id"},"vendor_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Vendor Id"},"vendor_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Vendor Name","description":"Resolved name of the pre-bound vendor, if any."},"label":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Label"},"created_by_user_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Created By User Id"},"expires_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Expires At"},"revoked_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Revoked At"},"is_active":{"type":"boolean","title":"Is Active","description":"False once the link is revoked or past its expiry."},"submission_count":{"type":"integer","title":"Submission Count","default":0},"last_submitted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Last Submitted At"},"created_at":{"type":"string","format":"date-time","title":"Created At"},"updated_at":{"type":"string","format":"date-time","title":"Updated At"}},"type":"object","required":["id","business_id","is_active","created_at","updated_at"],"title":"VendorBillRequestLinkResponse","description":"One bill-request link. Never carries the raw token."}},"securitySchemes":{"BearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"API Token","description":"API token authentication. Format: `Bearer dz_...`"}}},"security":[{"BearerAuth":[]}]}