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 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: Propertyware REST
        • POSTCreate Resident Credit: Propertyware REST
        • POSTCreate Recurring Resident Charge: Propertyware REST
        • POSTCreate Resident Payment: Propertyware REST
        • POSTBatch Create Resident Charges: Propertyware REST
    • CRM APIs
    • Download OpenAPI Spec
Dashboard
LogoLogo
Propertyware RESTBilling and Payments

Create Resident Payment: Propertyware REST

POST
/v1/resident-payments/propertyware_rest/
POST
/v1/resident-payments/propertyware_rest/
$curl -X POST https://api.propexo.com/v1/resident-payments/propertyware_rest/ \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "integration_id": "intg_9f8b7c6d5e4a3b2c1d0e",
> "lease_id": "lease_1234567890abcdef",
> "resident_id": "resident_0987654321fedcba",
> "financial_account_id": "finacct_abcdef1234567890",
> "amount_in_cents": 125000,
> "transaction_date": "2024-01-15T09:30:00Z",
> "payment_type": "CHECK",
> "reference_number": "CHK20240115001"
>}'
1{
2 "meta": {
3 "job_id": "job_20240115_0001"
4 },
5 "result": {
6 "integration_id": "intg_9f8b7c6d5e4a3b2c1d0e",
7 "lease_id": "lease_1234567890abcdef",
8 "resident_id": "resident_0987654321fedcba",
9 "financial_account_id": "finacct_abcdef1234567890",
10 "amount_in_cents": 125000,
11 "transaction_date": "2024-01-15T09:30:00Z",
12 "payment_type": "CHECK",
13 "reference_number": "CHK20240115001",
14 "description": "January rent payment via check"
15 }
16}
Create Resident Payment: Propertyware REST | Method | Interface | |---|---| | POST /v1/leases/payments | Leases | <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

Batch Create Resident Charges: Propertyware REST

Next
Built with

Create Resident Payment: Propertyware REST

MethodInterface
POST /v1/leases/paymentsLeases
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
lease_idstringRequired
The Propexo unique identifier for the lease
resident_idstringRequired
The Propexo unique identifier for the resident
financial_account_idstringRequired
The Propexo unique identifier for the financial account
amount_in_centsintegerRequired
The amount of the resident payment, in cents
transaction_datestringRequired
The transaction date of the resident payment
payment_typeenumRequired
The type of payment used for the resident payment
reference_numberstringRequired
The reference number for the resident payment
descriptionstringOptional
Description of the resident payment

Response

Successful response
metaobject
resultobject

Errors

400
Bad Request Error