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 resident charges
        • GETGet a resident charge by ID
        • GETGet all resident payments
        • GETGet a resident payment by ID
        • GETGet all fees
        • GETGet fee by ID
        • POSTCreate Resident Charge: ResMan
        • POSTCreate Resident Payment: ResMan
        • POSTBatch Create Resident Charges: ResMan
    • CRM APIs
    • Download OpenAPI Spec
Dashboard
LogoLogo
ResManBilling and Payments

Create Resident Charge: ResMan

POST
/v1/resident-charges/resman/
POST
/v1/resident-charges/resman/
$curl -X POST https://api.propexo.com/v1/resident-charges/resman/ \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "integration_id": "intg-9f8b7c6d5e4a3b2c",
> "resident_id": "res-1234567890abcdef",
> "charge_code_id": "chg-0987654321fedcba",
> "batch_id": "batch-20240601-001",
> "transaction_date": "2024-06-01T10:00:00Z",
> "description": "Monthly Parking Fee",
> "notes": "Charge for reserved parking spot #42",
> "amount_in_cents": 7500,
> "reference_number": "INV-20240601-0001"
>}'
1{
2 "meta": {
3 "job_id": "job-5a4b3c2d1e0f9a8b"
4 },
5 "result": {
6 "integration_id": "intg-9f8b7c6d5e4a3b2c",
7 "resident_id": "res-1234567890abcdef",
8 "charge_code_id": "chg-0987654321fedcba",
9 "batch_id": "batch-20240601-001",
10 "transaction_date": "2024-06-01T10:00:00Z",
11 "description": "Monthly Parking Fee",
12 "notes": "Charge for reserved parking spot #42",
13 "amount_in_cents": 7500,
14 "reference_number": "INV-20240601-0001"
15 }
16}
Create Resident Charge: ResMan. Important note: ResMan requires that the property management company approve partner (API) generated charges and payments. To do this, the PMC must go to the "Partner Transactions" tab in the ResMan portal and approve each transaction. | Interface | Method | |---|---| | Accounts Receivable | /MITS/PostResidentTransactions2_0 | <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

Create Resident Payment: ResMan

Next
Built with

Create Resident Charge: ResMan. Important note: ResMan requires that the property management company approve partner (API) generated charges and payments. To do this, the PMC must go to the “Partner Transactions” tab in the ResMan portal and approve each transaction.

InterfaceMethod
Accounts Receivable/MITS/PostResidentTransactions2_0
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
resident_idstringRequired
The Propexo unique identifier for the resident
charge_code_idstringRequired
The Propexo unique identifier for the charge code
batch_idstringRequired
An identifier for the transaction batch. This should be unique to your system.
transaction_datestringRequiredformat: "date-time"
The transaction date of the resident charge
descriptionstringRequired
Description of the resident charge
notesstringRequired
Notes associated with the resident charge
amount_in_centsintegerRequired
The amount of the resident charge, in cents
reference_numberstringRequired
The reference number for the resident charge

Response

Successful response
metaobject
resultobject

Errors

400
Bad Request Error