Skip to main content

Create a Communication

create a communication in funnel for a communications created by partner api

POST
/api/partners/v1/community/:community_id/renters/:funnel_renter_id/communication/

Request

Example requestPOSTapplication/json
curl -X POST \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -d '{
      "direction": "incoming",
      "message_type": "email",
      "subject": "Email Subject",
      "message": "Message Text",
      "to_addresses": [
        "example@email.com"
      ],
      "from_address": "fromexample@email.com"
    }' \
    "https://api.funnelleasing.com/api/partners/v1/community/1234/renters/:funnel_renter_id/communication/"

Response

Example responseJSON200 · application/json
{
  "message": {
    "id": 456,
    "direction": "string",
    "subject": "string",
    "text": "string",
    "to_addresses": [],
    "from_address": "string",
    "type": 0
  }
}