POST api/Tickets/RemoveInvitation

Removes the invitation of the user in the ticket.

Request Information

URI Parameters

None.

Body Parameters

TicketInvitationRemovePost
NameDescriptionTypeAdditional information
TicketId

(Required) The ID of the ticket

integer

None.

UserProviderKey

The user's Id to remove the invitation from the ticket

string

None.

Request Formats

application/json, text/json

Sample:
{
  "TicketId": 123,
  "UserProviderKey": "00000000-0000-0000-0000-000000000000"
}

application/xml, text/xml

Sample:
<TicketInvitationRemovePost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Posts">
  <TicketId>123</TicketId>
  <UserProviderKey>00000000-0000-0000-0000-000000000000</UserProviderKey>
</TicketInvitationRemovePost>

Response Information

Resource Description

IHttpActionResult

None.