GET api/Customer/GetUsers/{id}?pageIndex={pageIndex}&pageSize={pageSize}

Gets list of users for customer id.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

customer id

integer

Required

pageIndex

integer

None.

pageSize

integer

None.

Body Parameters

None.

Response Information

Resource Description

GetCustomerUsersResult
NameDescriptionTypeAdditional information
CustomerUserRows

CustomerUserRow

None.

Response Formats

application/json, text/json

Sample:
{
  "CustomerUserRows": {
    "PageIndex": 1,
    "PageSize": 10,
    "TotalItems": 1,
    "TotalPages": 1,
    "Items": [
      {
        "UserProviderKey": "6d672593-bc3e-4317-99b2-546819f19230",
        "UserFullName": "John Doe",
        "CanAccessOthersTickets": true,
        "CanEditOthersTickets": true,
        "CanManageOthersTickets": false
      }
    ]
  }
}

application/xml, text/xml

Sample:
<GetCustomerUsersResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Results">
  <CustomerUserRows>
    <Items>
      <GetCustomerUsersResult.CustomerUserRow>
        <CanAccessOthersTickets>true</CanAccessOthersTickets>
        <CanEditOthersTickets>true</CanEditOthersTickets>
        <CanManageOthersTickets>false</CanManageOthersTickets>
        <UserFullName>John Doe</UserFullName>
        <UserProviderKey>6d672593-bc3e-4317-99b2-546819f19230</UserProviderKey>
      </GetCustomerUsersResult.CustomerUserRow>
    </Items>
    <PageIndex>1</PageIndex>
    <PageSize>10</PageSize>
    <TotalItems>1</TotalItems>
    <TotalPages>1</TotalPages>
  </CustomerUserRows>
</GetCustomerUsersResult>