SellerLead
The SellerLead object is our full representation of a lead. It is currently used in the response from the sellerLeads query, but can be reused elsewhere.
Definition
Section titled “Definition”type SellerLead { market: Market address: Address! customer: CustomerInfo sellerInputId: String! createdAt: DateTime! qualifiedAt: DateTime source: String! trackingId: String denied: DenialInfo offers: [SellerOffer!]! virtualAssessments: [VirtualAssessment!]!}Fields
Section titled “Fields”| Field | Type | Description |
|---|---|---|
market | Market | A Market enum denoting the address’s market. |
address | Address! | The lead’s address data. Resolves to the Address object. |
customer | CustomerInfo | The leads’s customer data. Resolves to the CustomerInfo object. |
sellerInputId | String! | The lead’s sellerInputId is a uuid that uniquely identifies the seller input flow this customer went through when the lead was created. |
createdAt | DateTime! | The lead’s creation timestamp. |
qualifiedAt | DateTime | The lead’s qualification timestamp. Will be null if the lead was never qualified. |
source | String! | The lead’s source is the place and type of application where this lead originated such as Partner API, Landing Page, etc. |
trackingId | String | The lead’s trackingId is the uniqued id that we received when a referral was created using our address eligibility api. See this page for an explanation of how to provide us a tracking id. |
denied | DenialInfo | The lead’s denial data. Will be null if the lead was never denied. If present, it resolves to the DenialInfo object. |
offers | [SellerOffer!]! | All the offers made on this lead. It will be an array of SellerOffer objects. The array will be empty if no offers have been created for this lead. |
virtualAssessments | [VirtualAssessment!]! | — |