PUT api/user/AssignMentors

Request Information

URI Parameters

None.

Body Parameters

AssignMentorsRequestModel
NameDescriptionTypeAdditional information
MentorIds

Collection of globally unique identifier

None.

MenteeIds

Collection of globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "MentorIds": [
    "00bb9906-b0e0-4aa7-88ae-6c384f30ae1e",
    "68fe4d7b-d085-4d29-b5d8-3c7f2ca773bd"
  ],
  "MenteeIds": [
    "38303fc2-6ca7-4aae-b761-adc3490c1f60",
    "375624b4-4864-4b70-9729-c2e4d3f45caf"
  ]
}

application/xml, text/xml

Sample:
<AssignMentorsRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SHPACollegeAPI.Models.RequestModels">
  <MenteeIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>38303fc2-6ca7-4aae-b761-adc3490c1f60</d2p1:guid>
    <d2p1:guid>375624b4-4864-4b70-9729-c2e4d3f45caf</d2p1:guid>
  </MenteeIds>
  <MentorIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>00bb9906-b0e0-4aa7-88ae-6c384f30ae1e</d2p1:guid>
    <d2p1:guid>68fe4d7b-d085-4d29-b5d8-3c7f2ca773bd</d2p1:guid>
  </MentorIds>
</AssignMentorsRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.