Customers
Manage your customers
Get All Customers
Fetch a list of all your customers
GET
https://api.mycover.ai/v1/customers
Query Parameters
Name | Type | Description |
---|---|---|
page | string | Page number of response |
limit | string | Number of data to show per fetch |
search | string | Search key word |
active | boolean | Find active customers |
start_date | string | Filter customers by date |
end_date | string | Filter customers by date |
Response
View Active Customers
See a list of customers that have purchased a product
GET
https://api.mycover.ai/v1/customers/has-purchased
Query Parameters
Name | Type | Description |
---|---|---|
page | string | Page number of response |
limit | string | Number of data to show per fetch |
View Customer Details by ID
View Customer Details by unique customer ID
GET
https://api.mycover.ai/v1/customers/{customer_id}
View Purchase History
See customer’s purchase details, dates and transaction info
GET
https://api.mycover.ai/v1/customers/purchases/{customer_id}
Query Parameters
Name | Type | Description |
---|---|---|
page | string | Page number of response |
limit | string | Number of data to show per fetch |
View Customer Renewals
See customer’s renewal details, dates and transaction info
GET
https://api.mycover.ai/v1/customers/renewals/{customer_id}
Query Parameters
Name | Type | Description |
---|---|---|
page | string | Page number of response |
limit | string | Number of data to show per fetch |
View Policies
See customer’s policy details, dates and transaction info
GET
https://api.mycover.ai/v1/customers/policies/{customer_id}
Query Parameters
Name | Type | Description |
---|---|---|
page | string | Page number of response |
limit | string | Number of data to show per fetch |
View Claims
List claims made by customers
GET
https://api.mycover.ai/v1/customers/claims/{customer_id}
Query Parameters
Name | Type | Description |
---|---|---|
page | string | Page number of response |
limit | string | Number of data to show per fetch |
Last updated