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 charge codes
        • GETGet a charge code by ID
        • GETGet all financial accounts
        • GETGet a financial account by ID
        • GETGet all resident charges
        • GETGet a resident charge by ID
        • GETGet all recurring resident charges
        • GETGet recurring resident charge by ID
        • GETGet all resident payments
        • GETGet a resident payment by ID
        • POSTCreate Resident Charge: Rent Manager
        • POSTCreate Resident Credit: Rent Manager
        • POSTCreate Resident Recurring Charge: Rent Manager
        • PUTUpdate Recurring Resident Charge: Rent Manager
        • POSTCreate Resident Payment: Rent Manager
        • POSTBatch Create Resident Charges: Rent Manager
    • CRM APIs
    • Download OpenAPI Spec
Dashboard
LogoLogo
Rent ManagerBilling and Payments

Batch Create Resident Charges: Rent Manager

POST
/v1/resident-charges/batch/rentmanager/
POST
/v1/resident-charges/batch/rentmanager/
$curl -X POST https://api.propexo.com/v1/resident-charges/batch/rentmanager/ \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "integration_id": "rm-integration-987654321",
> "charges": [
> {
> "resident_id": "resident-12345",
> "charge_code_id": "chargecode-67890",
> "transaction_date": "2024-01-15T09:30:00Z",
> "notes": "January rent charge",
> "amount_in_cents": 125000,
> "reference_number": "INV-20240115-001"
> }
> ]
>}'
1{
2 "meta": {
3 "job_id": "job-20240115-abc123"
4 },
5 "result": {
6 "integration_id": "rm-integration-987654321",
7 "charges": [
8 {
9 "resident_id": "resident-12345",
10 "charge_code_id": "chargecode-67890",
11 "transaction_date": "2024-01-15T09:30:00Z",
12 "notes": "January rent charge",
13 "amount_in_cents": 125000,
14 "reference_number": "INV-20240115-001"
15 }
16 ]
17 }
18}
Creates multiple resident charges in one job. All charges must resolve to the same Rent Manager location; use separate requests for charges in different locations. | Method | |---| | POST /Charges | <Note title="Notice">Due to PMS limitations, the ID of the created record cannot be retrieved. This will be found on the next data sync.</Note>
Was this page helpful?
Previous

Get all employees

Next
Built with

Creates multiple resident charges in one job. All charges must resolve to the same Rent Manager location; use separate requests for charges in different locations.

Method
POST /Charges
Notice
Due to PMS limitations, the ID of the created record cannot be retrieved. This will be found on the next data sync.

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
chargeslist of objectsRequired
Array of resident charges to create. All charges must resolve to the same Rent Manager location.

Response

Successful response
metaobject
resultobject

Errors

400
Bad Request Error