GET v1/ams/{externalPartner}/system-fields/divisions/{divisionId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
externalPartner

ExternalPartners

Required

divisionId

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of AMSIntegrationSystemSyncFieldDTO
NameDescriptionTypeAdditional information
Code

string

None.

Description

string

None.

InternalDisplayName

string

None.

ExternalDisplayName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "code": "sample string 1",
    "description": "sample string 2",
    "internalDisplayName": "sample string 3",
    "externalDisplayName": "sample string 4"
  },
  {
    "code": "sample string 1",
    "description": "sample string 2",
    "internalDisplayName": "sample string 3",
    "externalDisplayName": "sample string 4"
  }
]

text/xml

Sample:
<ArrayOfAMSIntegrationSystemSyncFieldDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BDBPayroll.Integration.Data.Models">
  <AMSIntegrationSystemSyncFieldDTO>
    <Code>sample string 1</Code>
    <Description>sample string 2</Description>
    <ExternalDisplayName>sample string 4</ExternalDisplayName>
    <InternalDisplayName>sample string 3</InternalDisplayName>
  </AMSIntegrationSystemSyncFieldDTO>
  <AMSIntegrationSystemSyncFieldDTO>
    <Code>sample string 1</Code>
    <Description>sample string 2</Description>
    <ExternalDisplayName>sample string 4</ExternalDisplayName>
    <InternalDisplayName>sample string 3</InternalDisplayName>
  </AMSIntegrationSystemSyncFieldDTO>
</ArrayOfAMSIntegrationSystemSyncFieldDTO>