Dion Moerkerken

  • Totale activiteit 384
  • Laatste activiteit
  • Lid sinds
  • Volgend 0 gebruikers
  • Gevolgd door 0 gebruikers
  • Stemmen 0
  • Abonnementen 192

Artikelen

Recente activiteit van Dion Moerkerken Sorteren op recente activiteit Recente activiteit Stemmen
  • Retrieve a branding

    GET  https://:account.api-us1.com/api/3/brandings/id cURL curl --request GET \ --url https:///:account.api-us1.com/api/3/brandings/id Node var request = require("request"); var option...

  • Automations

    Automations allow you to automate marketing communications to your contacts, as well as business processes like deals moving between stages, tags being added/removed from contacts, notes being adde...

  • API Addresses

    Every campaign sent is required to have a physical mailing address associated with it. The API enables you to create, update, and delete address resources, as well as associate an address with a sp...

  • API Overview

    Version 3 of the API is structured around REST, HTTP, and JSON. API endpoint URLs are organized around resources, such as contacts or deals. It uses HTTP methods for indicating the action to take o...

  • Create a webhook

    POST  https://:account.api-us1.com/api/3/webhooks JSON { "webhook": { "name": "My Hook", "url": "http://example.com/my-hook", "events": [ "subscribe", ...

  • Retrieve a user

    GET  https://:account.api-us1.com/api/3/users/id cURL curl --request GET \ --url https:///:account.api-us1.com/api/3/users/id Node var request = require("request"); var options = { me...

  • Retrieve a task type

    GET  https://:account.api-us1.com/api/3/dealTasktypes/id cURL curl --request GET \ --url https:///:account.api-us1.com/api/3/dealTasktypes/id Node var request = require("request"); va...

  • Create a task

    POST  https://:account.api-us1.com/api/3/dealTasks JSON { "dealTask": { "title":null, "reltype":"Subscriber", "relid":"7", "status":0, "note":"Testing Task", "du...

  • Retrieve a tag

    GET  https://:account.api-us1.com/api/3/tags/id cURL curl --request GET \ --url https:///:account.api-us1.com/api/3/tags/id Node var request = require("request"); var options = { meth...

  • Create a new event (name only)

    POST  https://:account.api-us1.com/api/3/eventTrackingEvents JSON { "eventTrackingEvent": { "name": "my new fab event" } }   201 Created { "eventTrackingEvent": { "name": "m...