Sirdata API
Semantic APISirdata CMP - APIAbout Sirdata
  • Sirdata API
  • Overview
    • API Access
    • Sandbox
    • API Updates
  • Authentification
    • Get Token
  • Taxonomy
    • Sirdata Taxonomy
    • IAB Taxonomy
    • 3rd Party Taxonomy
  • A.D.S API
    • About A.D.S
    • Tag integration V1
    • Tag integration V2
    • Test method
    • Segment Access
  • Notification API
    • About Notification API
    • Audience
    • Campaign
    • Webhook endpoint
  • 😎Customer API
    • About Customer API
    • Create storage
    • Create Filter (counting)
    • Create order
    • Segment list
  • Semantic API
  • Sirdata CMP
  • About Sirdata
  • Sirdata API SLA
Powered by GitBook
On this page
  • Get audience list
  • Get audience
  • Create audience

Was this helpful?

  1. Notification API

Audience

Get audience list

GET https://partner-api.sddan.com/api/v1/public/event-notify/audience

Get token

Headers

Name
Type
Description

Authorization

string

token

[
  {
    "id": "xxxxxxx-e8ad-4f53-9234-2fca87fe9d86",
    "id_partner": 12345,
    "name": "My Audience",
    "type": "EMAIL_HASH",
    "status": "UPLOADING",
    "last_update": "2019-07-29 12:50:38"
  }
]

Get audience

GET https://partner-api.sddan.com/api/v1/public/event-notify/audience/:id

Path Parameters

Name
Type
Description

id

string

audience id

Headers

Name
Type
Description

Authorization

string

token

  {
    "id": "xxxxxxx-e8ad-4f53-9234-2fca87fe9d86",
    "id_partner": 12345,
    "name": "My Audience",
    "type": "EMAIL_HASH",
    "status": "UPLOADING",
    "last_update": "2019-07-29 12:50:38"
  }

Create audience

POST https://partner-api.sddan.com/api/v1/public/event-notify/audience

Post csv (comma separator) with 3 columns : - hash type : hd_m (md5) or hd_s256 (sha 256) - hash value - reference id

Headers

Name
Type
Description

name

string

audience name

Authorization

string

token

  {
    "id": "xxxxxxx-e8ad-4f53-9234-2fca87fe9d86",
    "id_partner": 12345,
    "name": "My Audience",
    "type": "EMAIL_HASH",
    "status": "UPLOADING",
    "last_update": "2019-07-29 12:50:38"
  }
PreviousAbout Notification APINextCampaign

Last updated 5 years ago

Was this helpful?