ServiceResourceUserGroups Test
ReferenceData/ServiceResourceUserGroups/{id}
Get the details of a service resource/user group mapping by id.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/ReferenceData/ServiceResourceUserGroups/{id}

URI Parameters

Parameter Name Data Type Required Notes
id integer Y

Request Body

None.

No request body.

Response object type : ServiceResourceUserGroup

Response object type ServiceResourceUserGroup has the following properties.
Property Name Data Type Length Required Readonly Notes
CanCreate boolean N
CanDelete boolean N
CanRead boolean N
CanUpdate boolean N
CreatedBy string N
CreatedDateTime date N
CreateLocation string N
Id integer N
ServiceResource ServiceResource N
FK: TR_SERVICE_RESOURCE.Id   Resource: ServiceResources
UpdatedBy string N
UpdatedDateTime date N
UserGroupId string N
{
  "CanCreate": true,
  "CanDelete": true,
  "CanRead": true,
  "CanUpdate": true,
  "CreatedDateTime": "2025-04-24T04:03:01.0462774-07:00",
  "CreateLocation": "sample string 5",
  "CreatedBy": "sample string 6",
  "Id": 1,
  "UpdatedDateTime": "2025-04-24T04:03:01.0462774-07:00",
  "UpdatedBy": "sample string 7",
  "ServiceResource": {
    "Id": 1,
    "Name": "sample string 1",
    "CreatedDateTime": "2025-04-24T04:03:01.0462774-07:00",
    "CreatedBy": "sample string 2",
    "UpdatedDateTime": "2025-04-24T04:03:01.0462774-07:00",
    "CreateLocation": "sample string 3",
    "UpdatedBy": "sample string 4"
  },
  "UserGroupId": "sample string 8"
}
<ServiceResourceUserGroup xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <CanCreate>true</CanCreate>
  <CanDelete>true</CanDelete>
  <CanRead>true</CanRead>
  <CanUpdate>true</CanUpdate>
  <CreateLocation>sample string 5</CreateLocation>
  <CreatedBy>sample string 6</CreatedBy>
  <CreatedDateTime>2025-04-24T04:03:01.0462774-07:00</CreatedDateTime>
  <Id>1</Id>
  <ServiceResource>
    <CreateLocation>sample string 3</CreateLocation>
    <CreatedBy>sample string 2</CreatedBy>
    <CreatedDateTime>2025-04-24T04:03:01.0462774-07:00</CreatedDateTime>
    <Id>1</Id>
    <Name>sample string 1</Name>
    <UpdatedBy>sample string 4</UpdatedBy>
    <UpdatedDateTime>2025-04-24T04:03:01.0462774-07:00</UpdatedDateTime>
  </ServiceResource>
  <UpdatedBy>sample string 7</UpdatedBy>
  <UpdatedDateTime>2025-04-24T04:03:01.0462774-07:00</UpdatedDateTime>
  <UserGroupId>sample string 8</UserGroupId>
</ServiceResourceUserGroup>
Change Version Description Contract Old New
Parameter Added 15.0.0 id has changed from String to int String int
Parameter Changed 15.0.0 id has been marked as required. Required