How to see who created a deal via API?

Question asked through support:

Is there a way to see who created a deal (not the current owner per se)

You can see that inside API call if you do GET https://api.pipedrive.com/v1/deals/:id?api_token= Then you get a response:

"creator_user_id": {
      "id": 785668,
      "name": "John Smith",
      "email": "john.smith@pipedrive.com",
      "has_pic": true,
      "pic_hash": "2ee30aec2326202682cecfe769b995e2",
      "active_flag": true,
      "value":
}
1 Like