POST api/Support/AddUsersToProject

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
projectUsers
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "Id": "sample string 1",
  "TicketId": "sample string 2",
  "ProjectId": "sample string 3",
  "Users": [
    {
      "UserId": "sample string 1",
      "Datetime": "2026-06-10T16:16:21.2952172+05:30"
    },
    {
      "UserId": "sample string 1",
      "Datetime": "2026-06-10T16:16:21.2952172+05:30"
    },
    {
      "UserId": "sample string 1",
      "Datetime": "2026-06-10T16:16:21.2952172+05:30"
    }
  ]
}

application/xml, text/xml

Sample:
<SupportUserMap xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ConnectAPI.Models.SupportModels">
  <Id>sample string 1</Id>
  <ProjectId>sample string 3</ProjectId>
  <TicketId>sample string 2</TicketId>
  <Users>
    <SupportUser>
      <Datetime>2026-06-10T16:16:21.2952172+05:30</Datetime>
      <UserId>sample string 1</UserId>
    </SupportUser>
    <SupportUser>
      <Datetime>2026-06-10T16:16:21.2952172+05:30</Datetime>
      <UserId>sample string 1</UserId>
    </SupportUser>
    <SupportUser>
      <Datetime>2026-06-10T16:16:21.2952172+05:30</Datetime>
      <UserId>sample string 1</UserId>
    </SupportUser>
  </Users>
</SupportUserMap>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>