POST api/GetAssociateAllLetters

Request Information

URI Parameters

None.

Body Parameters

GetAssociateAllLettersModel
NameDescriptionTypeAdditional information
AssociateID

string

None.

InnovID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AssociateID": "sample string 1",
  "InnovID": "sample string 2"
}

application/xml, text/xml

Sample:
<GetAssociateAllLettersModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RESTWebAPIForPaperlessOnboarding.Models">
  <AssociateID>sample string 1</AssociateID>
  <InnovID>sample string 2</InnovID>
</GetAssociateAllLettersModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'GetAssociateAllLettersModel'.

Response Information

Resource Description

GetAssociateAllLettersDetailsList
NameDescriptionTypeAdditional information
AssociateAllLetterslist

Collection of GetAssociateAllLettersDetails

None.

Status

string

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "AssociateAllLetterslist": [
    {
      "LetterType": "sample string 1",
      "LetterDate": "sample string 2",
      "FilePath": "sample string 3",
      "Remarks": "sample string 4"
    },
    {
      "LetterType": "sample string 1",
      "LetterDate": "sample string 2",
      "FilePath": "sample string 3",
      "Remarks": "sample string 4"
    }
  ],
  "Status": "sample string 1",
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<GetAssociateAllLettersDetailsList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RESTWebAPIForPaperlessOnboarding.Models">
  <AssociateAllLetterslist>
    <GetAssociateAllLettersDetails>
      <FilePath>sample string 3</FilePath>
      <LetterDate>sample string 2</LetterDate>
      <LetterType>sample string 1</LetterType>
      <Remarks>sample string 4</Remarks>
    </GetAssociateAllLettersDetails>
    <GetAssociateAllLettersDetails>
      <FilePath>sample string 3</FilePath>
      <LetterDate>sample string 2</LetterDate>
      <LetterType>sample string 1</LetterType>
      <Remarks>sample string 4</Remarks>
    </GetAssociateAllLettersDetails>
  </AssociateAllLetterslist>
  <Message>sample string 2</Message>
  <Status>sample string 1</Status>
</GetAssociateAllLettersDetailsList>