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
  • Update a tag

    PUT  https://:account.api-us1.com/api/3/tags/id JSON { "tag":{ "tag": "My Tag", "tagType": "contact", "description": "Description" } }   200 OK { "tag": { "tagT...

  • Retrieve status

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

  • Update a saved response

    PUT  https://:account.api-us1.com/api/3/savedResponses/:id Text { "savedResponse": { "title": "Response title", "subject": "Response subject", "body": "Response body" } }   200 O...

  • Update an organization

    PUT  https://:account.api-us1.com/api/3/organizations/id JSON { organization: { name: "Test Organization" } }   201 Created { "organization":{ "name":"Test Organizati...

  • Update a note

    PUT  https://:account.api-us1.com/api/3/notes/:id JSON { "note": { "note": "This is the text of the note", "relid": 2, "reltype": "Subscriber" } }   200 OK { "note": { ...

  • Delete a list

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

  • Update a connection

    PUT  https://:account.api-us1.com/api/3/connections/id JSON { "connection": { "externalid": "johndoe@example.com", "name": "Acme, Inc." } }   200 OK { "connection": {...

  • Retrieve a deal

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

  • Create or update contact

    Post  https://:account.api-us1.com/api/3/contact/sync Text { "contact": { "email": "jondoe@example.com", "firstName": "John", "lastName": "Doe", "phone": "7223224241" } }   ...

  • API Retrieve a campaign

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