Cant remove a paricipants on deals

https://api.pipedrive.com/v1/deals/181/followers/8840080?api_token=ee8993923cc80fed4f84024b4e42c99227563f69

Cant remove a participant on a particular deal

Are you trying to remove a Participant who is also the main Contact Person on the Deal? If so, you would need to remove the Person, not the Participant.

Also, I would recommend changing your API token now after sharing it here.

sorry not the participants but the follower sorry

Is the Follower also the Owner of the Deal?
If so, you can’t remove a Follower who is an Owner.

No it is not the owner of the deal

And also can you help me with this application need to up next month

Problems

  1. When I use the OAuth when its return access_token when I insert a new person using multidimensional input from email and phone it will not insert
    REF:
    https://devcommunity.pipedrive.com/t/api-proxy-end-point-cannot-add-multi-dimensional-email-and-phone/1563/4
    PHP CODE
    image
    POST DATA
    Array
    (
    [name] => test8
    [label] => Customer
    [email] => Array
    (
    [0] => Array
    (
    [value] => test8@gmail.com
    [label] => work
    )
    )

[phone] => Array
    (
        [0] => Array
            (
                [value] => 12345678
                [label] => work
            )

    )

[e531103cf7ce5f6464ebd80a446296f488293f3d] => 61
[visible_to] => 3
[org_id] => 349
[owner_id] => 9512217

)

BUT NOT INSERTED TO YOUR DATABASE

  1. For removing a follower for the certain deal - This is now fix thanks
    application
    THANKS!

About removing a follower, make sure that you’re passing the id of the link, not of the user.

For example, let’s say you look for the followers of the deal with id 145 and you get this response:

{
    "success": true,
    "data": [
        {
            "user_id": 1053717,
            "id": 274,
            "deal_id": 145,
            "add_time": "2019-09-23 08:52:35"
        }
    ],
    "additional_data": {
        "pagination": {
            "start": 0,
            "limit": 100,
            "more_items_in_collection": false
        }
    }
}

If you want to remove this follower with id 1053717, you will have to pass the id 274. Which means you will make the request:

DELETE https://api.pipedrive.com/v1/deals/145/followers/274?api_token=xxx
1 Like

I’ll reply in the original thread for this.

This is now fixed thanks