Skip to content

List Changed Contacts (Paginated)

Request

Lists contact IDs changed since the given Unix timestamp using cursor pagination.

Query
frominteger, (int64), >= 0required

Unix timestamp in seconds. Changes at this timestamp are included.

Example:from=1777593600
cursorstring

Opaque cursor returned as nextCursor by the previous page.

limitinteger, [ 1 .. 500 ]

Maximum number of contact IDs to return.

Default:100
curl -i -X GET \
  'https://api.klicktipp.com/subscriber/changed?from=1777593600'

Responses

Success Response.

Bodyapplication/json
subscriberIdsArray of stringsrequired

Page of changed contact IDs

Example:
[ "123", "456" ]
nextCursorstring or nullrequired

Cursor for the next page, or null when the last page was reached.

Example:"eyJjaGFuZ2VBdCI6IjIwMjYtMDktMDEgMTI6MDA6MDAiLCJzdWJzY3JpYmVySWQiOjQ1Nn0"
Response
{ "subscriberIds": [ "123", "456" ], "nextCursor": "eyJjaGFuZ2VBdCI6IjIwMjYtMDktMDEgMTI6MDA6MDAiLCJzdWJzY3JpYmVySWQiOjQ1Nn0" }