Getting Your postURL
Every Marketing Source has its own unique postURL. To find yours:- Log into the Mav dashboard.
- Navigate to Integrations → Marketing Sources.
- Select the Marketing Source you want to use, or create a new one.
- Copy the postURL shown on the source detail page.
Endpoint
Path Parameters
Both values are embedded in the postURL you copied from the dashboard — you do not need to construct the URL manually.
Request Formats
The endpoint accepts two content types. Use whichever is most convenient for your integration platform.Request Fields
The fields below are required for a standard Mortgage Qualification playbook. The exact required fields depend on your specific playbook configuration — contact your Mav account team if you are unsure which fields your playbook needs.Identity Fields
string
required
The lead’s given name.
string
required
The lead’s family name or surname.
string
required
The lead’s email address. Used for identification and follow-up.
string
required
The lead’s phone number. Accepts formats with or without formatting characters (e.g.,
5551234567 or 555-123-4567). Mav will normalize the number.string
required
The lead’s full date of birth in
YYYY-MM-DD format. Used for quoting and identity verification.string
required
The lead’s identified gender (e.g.,
Male, Female).string
required
The lead’s marital status. Accepted values include
Single, Married, Divorced, Widowed.Residence Fields
string
required
Full street address of the lead’s current residence (e.g.,
123 Main St).string
required
City where the lead currently resides.
string
required
Two-letter state abbreviation where the lead currently resides (e.g.,
TX).string
required
ZIP code of the lead’s current residence (e.g.,
78701).Insurance Fields
string
required
The name of the insurance company currently providing the lead’s policy (e.g.,
State Farm, Geico).string
required
The type or level of the lead’s existing insurance coverage (e.g.,
Full Coverage, Liability Only).string
required
The lead’s self-reported credit tier. Accepted values:
Excellent, Good, Fair, Poor.TCPA Consent Fields
string
required
A TCPA consent token from a certified consent provider such as Jornaya or ActiveProspect. This token serves as proof that the lead provided verifiable consent to be contacted.
string
required
The URL to the TCPA proof-of-consent record (e.g.,
https://proof.jornaya.com/abc123). This is used for compliance documentation and audit purposes.TCPA Compliance
If you are generating leads through your own web forms, integrate with Jornaya LeadiD or ActiveProspect TrustedForm to capture consent tokens at the point of form submission.What Happens After Submission
Once Mav receives a valid lead submission:- Lead is created — Mav creates a lead record with the submitted data and assigns a unique
lead_id. - Lead is tagged to the source — The lead is associated with the Marketing Source, so you can track attribution and volume per source in the Mav dashboard.
- Playbook starts — Mav begins the playbook sequence for that source. The
startedevent fires and is delivered to any subscribed webhook URLs. - Activity flows back to you — As the lead progresses, Mav fires events and outcomes to your configured webhook endpoints, including the
lead_originatorsdata so you can match updates back to your records.
200 response. If required fields are missing or the payload is malformed, the endpoint returns a 4xx error with a description of the problem.
Passing Your Own Lead ID
If you want to match Mav webhook activity back to a specific record in your system, include your internal lead identifier as a custom field when submitting the lead. Mav will echo it back in thelead_originators array on every webhook payload.
lead_originators field will contain the source name and the key value you provided, letting you do a direct lookup in your CRM without any fuzzy matching.
Related Pages
- API Overview — How the inbound and outbound APIs work together.
- Outbound Webhooks — Receive real-time activity as Mav works your submitted leads.
- Event Activities — Every event that can fire after a lead is submitted.
- Outcome Activities — Every outcome that closes out a lead’s playbook journey.