GET api/v1/Today/{Date}/BusinessSnapshot/{AgencyId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Date

string

Required

AgencyId

string

Required

Body Parameters

None.

Response Information

Resource Description

BusinessSnapshotSummary
NameDescriptionTypeAdditional information
ID

integer

None.

AgencyDatabaseID

string

None.

DisplayName

string

None.

Type

string

None.

Amount

decimal number

None.

AccMonth

integer

None.

AccMonthName

string

None.

AccYear

integer

None.

Source

string

None.

CreatedDateTime

date

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "AgencyDatabaseID": "sample string 2",
  "DisplayName": "sample string 3",
  "Type": "sample string 4",
  "Amount": 1.0,
  "AccMonth": 5,
  "AccMonthName": "sample string 6",
  "AccYear": 7,
  "Source": "sample string 8",
  "CreatedDateTime": "2025-04-29T14:08:03.9564688-04:00"
}

application/xml, text/xml

Sample:
<BusinessSnapshotSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RAIS.API.Models.Entities">
  <AccMonth>5</AccMonth>
  <AccMonthName>sample string 6</AccMonthName>
  <AccYear>7</AccYear>
  <AgencyDatabaseID>sample string 2</AgencyDatabaseID>
  <Amount>1</Amount>
  <CreatedDateTime>2025-04-29T14:08:03.9564688-04:00</CreatedDateTime>
  <DisplayName>sample string 3</DisplayName>
  <ID>1</ID>
  <Source>sample string 8</Source>
  <Type>sample string 4</Type>
</BusinessSnapshotSummary>