curl --request GET \
--url https://api.comm.com/api/v1/audience/feeds/logs \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"feed_id": "<string>",
"feed_data": {
"feed_token": "<string>",
"name": "<string>",
"phone_normalized": "<string>",
"email_normalized": "jsmith@example.com",
"country_id": 123,
"country": "<string>",
"state_id": 123,
"state": "<string>",
"custom1_str": "<string>",
"custom2_str": "<string>",
"custom3_str": "<string>",
"custom4_str": "<string>",
"custom5_str": "<string>",
"custom1_int": 123,
"custom2_int": 123,
"custom3_int": 123,
"custom4_int": 123,
"custom5_int": 123,
"custom1_dec": 123,
"custom2_dec": 123,
"custom1_datetime": "<string>",
"custom2_datetime": "<string>",
"custom3_datetime": "<string>",
"custom4_datetime": "<string>",
"custom5_datetime": "<string>",
"tags": [
"<string>"
],
"phone_is_good": 123,
"phone_is_good_reason": 123
},
"error_message": "<string>",
"is_new": true,
"is_success": true,
"date_created": "<string>"
}
],
"meta": {
"total": 123,
"current_page": 123,
"last_page": 123,
"per_page": 123
}
}
curl --request GET \
--url https://api.comm.com/api/v1/audience/feeds/logs \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"feed_id": "<string>",
"feed_data": {
"feed_token": "<string>",
"name": "<string>",
"phone_normalized": "<string>",
"email_normalized": "jsmith@example.com",
"country_id": 123,
"country": "<string>",
"state_id": 123,
"state": "<string>",
"custom1_str": "<string>",
"custom2_str": "<string>",
"custom3_str": "<string>",
"custom4_str": "<string>",
"custom5_str": "<string>",
"custom1_int": 123,
"custom2_int": 123,
"custom3_int": 123,
"custom4_int": 123,
"custom5_int": 123,
"custom1_dec": 123,
"custom2_dec": 123,
"custom1_datetime": "<string>",
"custom2_datetime": "<string>",
"custom3_datetime": "<string>",
"custom4_datetime": "<string>",
"custom5_datetime": "<string>",
"tags": [
"<string>"
],
"phone_is_good": 123,
"phone_is_good_reason": 123
},
"error_message": "<string>",
"is_new": true,
"is_success": true,
"date_created": "<string>"
}
],
"meta": {
"total": 123,
"current_page": 123,
"last_page": 123,
"per_page": 123
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object
.