Create/Update multiple contacts/users via REST API for a meeting

I am trying to add contacts/users to a created meeting as follows

POST call to https://demo.sugarcrm.com/rest/v11/Meetings/<record_id>/link/
body

{ "link_name": "contacts",
  "ids": [{"id": "<id of contact>", "accept_status_meetings": "accepted"}, {"id": "<id of    contact>","accept_status_meetings": "declined"}]
}

NOTE: In the above example I didn't add users to link with existing meeting. I have no idea how to add both users and contacts with its "accept_status_meetings"


Updated: Only ids of the contacts gets associated to the  particular meeting without meetings status.


Unable to add with multiple 
contacts and users with their accept_status_meetings. Any help is much appreciated! I've spent hours trying to figure this out. Thanks in advance for any insight / direction on how to handle this.

Parents
  • To accept or decline you normally use some "vintage" calls  like

    https://<sugarinstance>/index.php?entryPoint=acceptDecline&module=Meetings&contact_id=<contactid>&record=<meetingid>&accept_status=decline

    with values decline, accept or tentative as accept_status.

    This is helpful to support links in emails which should be able to give feedback without any authentication. 

    Harald Kuske
    Principal Solution Architect – Professional Services, EMEA
    hkuske@sugarcrm.com
    SugarCRM Deutschland GmbH

Reply
  • To accept or decline you normally use some "vintage" calls  like

    https://<sugarinstance>/index.php?entryPoint=acceptDecline&module=Meetings&contact_id=<contactid>&record=<meetingid>&accept_status=decline

    with values decline, accept or tentative as accept_status.

    This is helpful to support links in emails which should be able to give feedback without any authentication. 

    Harald Kuske
    Principal Solution Architect – Professional Services, EMEA
    hkuske@sugarcrm.com
    SugarCRM Deutschland GmbH

Children