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 vendors
        • GETGet vendor by ID
        • GETGet all vendors by property ID
        • POSTCreate Vendor: Yardi
        • PUTUpdate Vendor: Yardi
    • CRM APIs
    • Download OpenAPI Spec
Dashboard
LogoLogo
Yardi (Legacy)Vendors

Update Vendor: Yardi

PUT
/v1/vendors/yardi/:vendor_id
PUT
/v1/vendors/yardi/:vendor_id
$curl -X PUT https://api.propexo.com/v1/vendors/yardi/vendor_id \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "name": "Greenfield Landscaping"
>}'
1{
2 "meta": {
3 "job_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
4 },
5 "result": {
6 "vendor_id": "vnd-987654321",
7 "name": "Greenfield Landscaping",
8 "is_active": true,
9 "notes": "Preferred vendor for all landscaping and maintenance services.",
10 "tax_id": "12-3456789",
11 "tax_payer_first_name": "John",
12 "tax_payer_last_name": "Doe",
13 "workers_comp_expiration_date": "2025-12-31",
14 "liability_expiration_date": "2025-12-31",
15 "address_1": "1234 Elm Street",
16 "address_2": "Suite 200",
17 "city": "Springfield",
18 "state": "IL",
19 "zip": "62704",
20 "country": "United States",
21 "email_1": "contact@greenfieldlandscaping.com",
22 "phone_1": "+1-217-555-1234",
23 "phone_2": "+1-217-555-5678"
24 }
25}
Update Vendor: Yardi | Interface | Method | |---|---| | Vendor Invoicing | ImportVendors_Login |
Was this page helpful?
Previous

Get all applicants

Next
Built with

Update Vendor: Yardi

InterfaceMethod
Vendor InvoicingImportVendors_Login

Authentication

AuthorizationBearer

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

Path parameters

vendor_idstringRequired
The ID of the resource.

Request

This endpoint expects an object.
namestringRequired
The name associated with the vendor
is_activebooleanOptional
Whether the vendor is active
notesstringOptional<=1998 characters
Notes associated with the vendor
tax_idstringOptional
tax_payer_first_namestringOptional
The first name of the tax payer associated with the vendor
tax_payer_last_namestringOptional
The last name of the tax payer associated with the vendor
workers_comp_expiration_datestringOptional
The expiration date of the workers compensation policy on file for this vendor
liability_expiration_datestringOptional
The expiration date of the liability insurance policy on file for this vendor
address_1stringOptional
The first address line associated with the vendor
address_2stringOptional
The second address line associated with the vendor
citystringOptional
The city associated with the vendor
stateenumOptional
The state associated with the vendor
zipstringOptional
The zip code associated with the vendor
countryenum or stringOptional
The country associated with the vendor
email_1stringOptional
The primary email address associated with the vendor
phone_1stringOptional
Primary phone number associated with the vendor
phone_2stringOptional
Secondary phone number associated with the vendor

Response

Successful response
metaobject
resultobject

Errors

400
Bad Request Error