Accounts
This call is executed to fetch accounts created or modified their profile information in the time range selected
GET
/business-data/accounts
Request elements
start | Date | Yes | Start Date time |
end | Date | Yes | End Date time |
page | Integer | Yes | Search page number |
size | Integer | Yes | Number of records to return by page |
Error messages
Error Code | Error Message |
---|---|
400 | Bad request |
401 | Not authorized |
500 | Internal server error |
GET http://[subdomain].datanuum.com/business-data/accounts?start=2023-07-01&end=2023-07-29&page=1&size=100
{
"pageNumber": 1,
"pageSize": 100,
"totalCount": 143,
"data": [
{
"phone": "NULL",
"email": "user@datanuum.com",
"customerId": "NULL",
"first": "NULL",
"last": "NULL",
"birthdate": null,
"source": "Branch",
"profileSet": null,
"country": "NULL",
"customerSince": "2023-06-07 10:37:15",
"memberSince": "2023-07-05 08:33:57",
"nationality": "NULL",
"gender": "NULL",
"city": "NULL",
"language": "NULL",
"customFieldMap":{
"married":"Yes"
}
}
]
}