GET api/provider/applications?accountId={accountId}

Get AP Applications by accountId

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ProviderApplication
NameDescriptionTypeAdditional information
Id

string

None.

Name

string

None.

Status

IdNamePair

None.

TypeShort

string

None.

IsAppHistorical

boolean

None.

DateSubmitted

date

None.

StartDate

date

None.

EndDate

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "sample string 1",
    "Name": "sample string 2",
    "Status": {
      "Id": "e1bd8fef-ee9c-4f80-b9ef-79b0465274b6",
      "Name": "sample string 2"
    },
    "TypeShort": "sample string 3",
    "IsAppHistorical": true,
    "DateSubmitted": "2024-07-27T08:45:09.3718408+00:00",
    "StartDate": "2024-07-27T08:45:09.3718408+00:00",
    "EndDate": "2024-07-27T08:45:09.3718408+00:00"
  },
  {
    "Id": "sample string 1",
    "Name": "sample string 2",
    "Status": {
      "Id": "e1bd8fef-ee9c-4f80-b9ef-79b0465274b6",
      "Name": "sample string 2"
    },
    "TypeShort": "sample string 3",
    "IsAppHistorical": true,
    "DateSubmitted": "2024-07-27T08:45:09.3718408+00:00",
    "StartDate": "2024-07-27T08:45:09.3718408+00:00",
    "EndDate": "2024-07-27T08:45:09.3718408+00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfProviderApplication xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models">
  <ProviderApplication>
    <DateSubmitted>2024-07-27T08:45:09.3718408+00:00</DateSubmitted>
    <EndDate>2024-07-27T08:45:09.3718408+00:00</EndDate>
    <Id>sample string 1</Id>
    <IsAppHistorical>true</IsAppHistorical>
    <Name>sample string 2</Name>
    <StartDate>2024-07-27T08:45:09.3718408+00:00</StartDate>
    <Status xmlns:d3p1="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models.Helpers">
      <d3p1:Id>e1bd8fef-ee9c-4f80-b9ef-79b0465274b6</d3p1:Id>
      <d3p1:Name>sample string 2</d3p1:Name>
    </Status>
    <TypeShort>sample string 3</TypeShort>
  </ProviderApplication>
  <ProviderApplication>
    <DateSubmitted>2024-07-27T08:45:09.3718408+00:00</DateSubmitted>
    <EndDate>2024-07-27T08:45:09.3718408+00:00</EndDate>
    <Id>sample string 1</Id>
    <IsAppHistorical>true</IsAppHistorical>
    <Name>sample string 2</Name>
    <StartDate>2024-07-27T08:45:09.3718408+00:00</StartDate>
    <Status xmlns:d3p1="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models.Helpers">
      <d3p1:Id>e1bd8fef-ee9c-4f80-b9ef-79b0465274b6</d3p1:Id>
      <d3p1:Name>sample string 2</d3p1:Name>
    </Status>
    <TypeShort>sample string 3</TypeShort>
  </ProviderApplication>
</ArrayOfProviderApplication>