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.
Dashboard
How It WorksKnowledge BaseOnboardingVideo TutorialsPMS GuidanceAPI ReferenceRelease Notes
    • Overview
    • PMS Generic APIs
    • CRM Generic APIs
    • PMS APIs
        • GETGet all accounting entities
        • GETGet accounting entity by id
        • GETGet all invoices
        • GETGet an invoice by ID
        • POSTCreate Invoice: Rent Manager
    • CRM APIs
    • Download OpenAPI Spec
Dashboard
LogoLogo
Rent ManagerInvoices

Create Invoice: Rent Manager

POST
/v1/invoices/rentmanager/
POST
/v1/invoices/rentmanager/
$curl -X POST https://api.propexo.com/v1/invoices/rentmanager/ \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "integration_id": "intg_9f8b7c6d5e4a3b2c1d0e",
> "vendor_id": "vend_1234567890abcdef",
> "location_id": "loc_0987654321fedcba",
> "invoice_date": "2024-01-15T09:30:00Z",
> "due_date": "2024-02-14T23:59:59Z",
> "post_date": "2024-01-16T10:00:00Z",
> "total_amount_in_cents": 125000,
> "invoice_items": [
> {
> "amount_in_cents": 125000,
> "property_id": "prop_abcdef1234567890",
> "financial_account_id": "finacc_1122334455667788"
> }
> ]
>}'
1{
2 "meta": {
3 "job_id": "job_20240115_abc123xyz"
4 },
5 "result": {
6 "integration_id": "intg_9f8b7c6d5e4a3b2c1d0e",
7 "vendor_id": "vend_1234567890abcdef",
8 "location_id": "loc_0987654321fedcba",
9 "invoice_date": "2024-01-15T09:30:00Z",
10 "due_date": "2024-02-14T23:59:59Z",
11 "post_date": "2024-01-16T10:00:00Z",
12 "total_amount_in_cents": 125000,
13 "invoice_number": "INV-2024-000123",
14 "notes": "Monthly rent invoice for January 2024",
15 "invoice_items": [
16 {
17 "amount_in_cents": 125000,
18 "property_id": "prop_abcdef1234567890",
19 "financial_account_id": "finacc_1122334455667788",
20 "notes": "Rent for unit 12B"
21 }
22 ]
23 }
24}
Create Invoice: Rent Manager | Method | |---| | POST /Bills | <Note title="Notice">This write operation will set the created_record_id flag on the write-status endpoint and allow for new record to be read back in immediately.</Note>
Was this page helpful?
Previous

Get all leads

Next
Built with

Create Invoice: Rent Manager

Method
POST /Bills
Notice
This write operation will set the created_record_id flag on the write-status endpoint and allow for new record to be read back in immediately.

Authentication

AuthorizationBearer

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

Request

This endpoint expects an object.
integration_idstringRequired
The Propexo unique identifier for the integration
vendor_idstringRequired
The Propexo unique identifier for the vendor
location_idstringRequired
The Propexo unique identifier for the location
invoice_datestringRequired
The date of issuance for the invoice
due_datestringRequired
The due date associated with the invoice
post_datestringRequired
The post date for the invoice.
total_amount_in_centsintegerRequired>=0
The total amount of the invoice
invoice_itemslist of objectsRequired
Line items for the invoice. Each item represents a detail line on the bill in Rent Manager.
invoice_numberstringOptional
The invoice or reference number that the vendor assigned to the service request
notesstringOptional
Notes associated with the invoice

Response

Successful response
metaobject
resultobject

Errors

400
Bad Request Error