GET api/collectionsactionstagelinks/{id}

GET: api/collectionsactionstagelinks/{id} Get the item information by the Id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

CollectionsActionStageLinkViewModel

CollectionsActionStageLinkViewModel
NameDescriptionTypeAdditional information
Id

Id

integer

None.

StageId

StageId

integer

None.

ActionId

ActionId

integer

None.

DisplayOrder

DisplayOrder

integer

None.

IsActive

IsActive

boolean

None.

CreatedBy

CreatedBy

integer

None.

CreatedOn

CreatedOn

date

None.

ModifiedBy

ModifiedBy

integer

None.

ModifiedOn

ModifiedOn

date

None.

StageActionAttributeLinks

CollectionsStageActionAttributeLinks

Collection of CollectionsStageActionAttributeLinkViewModel

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "stageId": 2,
  "actionId": 3,
  "displayOrder": 4,
  "isActive": true,
  "createdBy": 6,
  "createdOn": "2024-10-13T16:19:24.006048-04:00",
  "modifiedBy": 1,
  "modifiedOn": "2024-10-13T16:19:24.006048-04:00",
  "stageActionAttributeLinks": [
    {
      "id": 1,
      "actionStageLinkId": 2,
      "actionAttributeId": 3,
      "value": "sample string 4",
      "createdBy": 5,
      "createdOn": "2024-10-13T16:19:24.006048-04:00",
      "modifiedBy": 1,
      "modifiedOn": "2024-10-13T16:19:24.006048-04:00",
      "collectionsActionAttribute": {
        "id": 1,
        "parentAttributeId": 1,
        "actionId": 2,
        "name": "sample string 3",
        "displayOrder": 4,
        "dataTypeId": 5,
        "defaultValue": "sample string 6",
        "isActive": true,
        "isNonTemplateSpecific": true
      }
    },
    {
      "id": 1,
      "actionStageLinkId": 2,
      "actionAttributeId": 3,
      "value": "sample string 4",
      "createdBy": 5,
      "createdOn": "2024-10-13T16:19:24.006048-04:00",
      "modifiedBy": 1,
      "modifiedOn": "2024-10-13T16:19:24.006048-04:00",
      "collectionsActionAttribute": {
        "id": 1,
        "parentAttributeId": 1,
        "actionId": 2,
        "name": "sample string 3",
        "displayOrder": 4,
        "dataTypeId": 5,
        "defaultValue": "sample string 6",
        "isActive": true,
        "isNonTemplateSpecific": true
      }
    }
  ]
}

application/xml, text/xml

Sample:
<CollectionsActionStageLinkViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
  <ActionId>3</ActionId>
  <CreatedBy>6</CreatedBy>
  <CreatedOn>2024-10-13T16:19:24.006048-04:00</CreatedOn>
  <DisplayOrder>4</DisplayOrder>
  <Id>1</Id>
  <IsActive>true</IsActive>
  <ModifiedBy>1</ModifiedBy>
  <ModifiedOn>2024-10-13T16:19:24.006048-04:00</ModifiedOn>
  <StageActionAttributeLinks>
    <CollectionsStageActionAttributeLinkViewModel>
      <ActionAttributeId>3</ActionAttributeId>
      <ActionStageLinkId>2</ActionStageLinkId>
      <CollectionsActionAttribute>
        <ActionId>2</ActionId>
        <DataTypeId>5</DataTypeId>
        <DefaultValue>sample string 6</DefaultValue>
        <DisplayOrder>4</DisplayOrder>
        <Id>1</Id>
        <IsActive>true</IsActive>
        <IsNonTemplateSpecific>true</IsNonTemplateSpecific>
        <Name>sample string 3</Name>
        <ParentAttributeId>1</ParentAttributeId>
      </CollectionsActionAttribute>
      <CreatedBy>5</CreatedBy>
      <CreatedOn>2024-10-13T16:19:24.006048-04:00</CreatedOn>
      <Id>1</Id>
      <ModifiedBy>1</ModifiedBy>
      <ModifiedOn>2024-10-13T16:19:24.006048-04:00</ModifiedOn>
      <Value>sample string 4</Value>
    </CollectionsStageActionAttributeLinkViewModel>
    <CollectionsStageActionAttributeLinkViewModel>
      <ActionAttributeId>3</ActionAttributeId>
      <ActionStageLinkId>2</ActionStageLinkId>
      <CollectionsActionAttribute>
        <ActionId>2</ActionId>
        <DataTypeId>5</DataTypeId>
        <DefaultValue>sample string 6</DefaultValue>
        <DisplayOrder>4</DisplayOrder>
        <Id>1</Id>
        <IsActive>true</IsActive>
        <IsNonTemplateSpecific>true</IsNonTemplateSpecific>
        <Name>sample string 3</Name>
        <ParentAttributeId>1</ParentAttributeId>
      </CollectionsActionAttribute>
      <CreatedBy>5</CreatedBy>
      <CreatedOn>2024-10-13T16:19:24.006048-04:00</CreatedOn>
      <Id>1</Id>
      <ModifiedBy>1</ModifiedBy>
      <ModifiedOn>2024-10-13T16:19:24.006048-04:00</ModifiedOn>
      <Value>sample string 4</Value>
    </CollectionsStageActionAttributeLinkViewModel>
  </StageActionAttributeLinks>
  <StageId>2</StageId>
</CollectionsActionStageLinkViewModel>