GET api/{context}/appeal/ID/{text}

Retrieve an appeal by its ID

Request Information

ParameterDescriptionAdditional information
text
The AppealID of the appeal

Define this parameter in the request URI.

Special Field Notes

Field NameNotes
AppealDate
Auto-assigned by the Aegis CRM application and indicates when the database record was created.
AppealID
Primary key for all Aegis CRM appeals.
AppealType
Valid choices are limited to 'BULK', 'RESPONSE', or 'GLOBAL_AVAIL_RESPONSE'.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "AppealID": "sample string 1",
  "AppealName": "sample string 2",
  "AppealType": "sample string 3",
  "AppealDate": "2024-03-28T15:24:24.559141-06:00",
  "Active": true
}

application/xml, text/xml

Sample:
<AppealModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BDS.Web.WebApi.Models">
  <Active>true</Active>
  <AppealDate>2024-03-28T15:24:24.559141-06:00</AppealDate>
  <AppealID>sample string 1</AppealID>
  <AppealName>sample string 2</AppealName>
  <AppealType>sample string 3</AppealType>
</AppealModel>