How to differentiate add/remove lead to list request | Community
Skip to main content
Keerthana_Shan1
New Participant
April 17, 2018
Solved

How to differentiate add/remove lead to list request

  • April 17, 2018
  • 1 reply
  • 1836 views

Hi,

Am trying to add and remove lead from list using rest API (http://developers.marketo.com/rest-api/endpoint-reference/lead-database-endpoint-reference/#/Static_Lists )

Input request and api url are same for both add and remove API's.

Please find input request below,

{

  "input": [

    {

      "id": 0

    }

  ]

}

With this request am able to add lead to a list, but I also want to remove lead from list.

I need key parameter in input request which differentiate add and remove rest API.

Thanks.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by SanfordWhiteman

I need key parameter in input request which differentiate add and remove rest API.

One is a POST, the other an HTTP DELETE, as shown in the docs.

1 reply

SanfordWhiteman
SanfordWhitemanAccepted solution
New Participant
April 17, 2018

I need key parameter in input request which differentiate add and remove rest API.

One is a POST, the other an HTTP DELETE, as shown in the docs.

Keerthana_Shan1
New Participant
April 18, 2018

Thanks Sanford. It was working fine now.