Owner portal invite eligibility
curl --request GET \
--url https://app.yampi.ai/api/v1/accounts/{account_id}/owner_portal_invites/eligibility \
--header 'api_access_token: <api-key>'const options = {method: 'GET', headers: {api_access_token: '<api-key>'}};
fetch('https://app.yampi.ai/api/v1/accounts/{account_id}/owner_portal_invites/eligibility', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.yampi.ai/api/v1/accounts/{account_id}/owner_portal_invites/eligibility"
headers = {"api_access_token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){}{
"description": "<string>",
"errors": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
]
}{}{}Owner Portal Invites
Owner portal invite eligibility
Check whether a contact can be invited to the owner portal for a property.
GET
/
api
/
v1
/
accounts
/
{account_id}
/
owner_portal_invites
/
eligibility
Owner portal invite eligibility
curl --request GET \
--url https://app.yampi.ai/api/v1/accounts/{account_id}/owner_portal_invites/eligibility \
--header 'api_access_token: <api-key>'const options = {method: 'GET', headers: {api_access_token: '<api-key>'}};
fetch('https://app.yampi.ai/api/v1/accounts/{account_id}/owner_portal_invites/eligibility', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.yampi.ai/api/v1/accounts/{account_id}/owner_portal_invites/eligibility"
headers = {"api_access_token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){}{
"description": "<string>",
"errors": [
{
"field": "<string>",
"message": "<string>",
"code": "<string>"
}
]
}{}{}