Common Fields in GET Responses
Migration Notes from 0.5 API
- The
push_update
andpush_status
fields have been removed.- New, helpful fields include
count
,next
, andprevious
.
All GET responses will include the following fields:
count
next
previous
In addition, most Buzz resources will also include a set of common fields, including:
alternative_id
notes
create_date
update_date
Below are descriptions of these common fields.
count
Count of total eligible results. By default the API returns results in increments of 50. See page
and page_size
parameters on the GET-ting Data from the API guide.
next
URI for the next set of results.
previous
URI for the previous set of results.
alternative_id
Most of the resources in Buzz support the concept of an Alternative ID. This field is essentially a way for a Buzz user to tie the resources to some external system and to use that other system's ID for querying Buzz. The ID itself has no effect on Buzz's operation and can be omitted if desired.
Typical use cases for Alternative IDs:
- Buzz is being used in conjunction with another ad serving system and the IDs from that other system need to be stored in Buzz for reconciliation.
- Buzz is being used with an order entry system of some kind that has its own IDs.
- Buzz reporting will be combined with reporting from another system and it will be easier to match data with a key.
Note, no validation is performed on Alternative IDs so there is no guarantee of uniqueness or referential integrity between systems. Alternative IDs are limited to 191 characters.
notes
Notes is a text field for putting whatever you want into the object. Typically this is used for data entry notes from the Buzz user, but it can also be used for programmatic updates from the system hitting the API. Notes are limited to 255 characters.
create_date
Auto-generated field showing the object's creation date. Read only. Can be included in GET requests, for example to only show objects created today ("create_date__range=yesterday
).
update_date
Auto-generated field showing the object's last update date. Read only.
account_id
The account the object belongs to. You can only make requests across Accounts if enabled as a multi-account user
Updated over 4 years ago