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 events
        • GETGet an event by ID
        • POSTCreate Lead Event: Resman
    • CRM APIs
    • Download OpenAPI Spec
Dashboard
LogoLogo
ResManEvents

Create Lead Event: Resman

POST
/v1/events/leads/resman/
POST
/v1/events/leads/resman/
$curl -X POST https://api.propexo.com/v1/events/leads/resman/ \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "integration_id": "resman-987654321",
> "lead_id": "lead-123456789",
> "event_name": "EmailToProspect",
> "event_datetime": "2024-01-15T09:30:00Z"
>}'
1{
2 "meta": {
3 "job_id": "job-20240115-093000"
4 },
5 "result": {
6 "integration_id": "resman-987654321",
7 "lead_id": "lead-123456789",
8 "lead_source_id": "source-456789123",
9 "unit_id": "unit-321654987",
10 "event_name": "EmailToProspect",
11 "event_datetime": "2024-01-15T09:30:00Z",
12 "notes": "Initial outreach email sent to prospect regarding available units.",
13 "reasons_for_event": "Prospect requested more information about leasing options."
14 }
15}
Create Lead Event: Resman | Interface | Method | |---|---| | Lead Management | /MITS/PostLeadManagement4_0 | <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 accounting entities

Next
Built with

Create Lead Event: Resman

InterfaceMethod
Lead Management/MITS/PostLeadManagement4_0
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
lead_idstringRequired
The Propexo unique identifier for the lead
event_nameenumRequired
The name or type of event
event_datetimestringRequiredformat: "date-time"
The date when the event will occur
lead_source_idstringOptional
The Propexo unique identifier for the lead source
unit_idstringOptional
The Propexo unique identifier for the unit
notesstringOptional
Notes associated with the event
reasons_for_eventstringOptional
The reasons for the event

Response

Successful response
metaobject
resultobject

Errors

400
Bad Request Error