POST api/Manifest/AddSignature

Request Information

URI Parameters

None.

Body Parameters

ManifestSignature
NameDescriptionTypeAdditional information
Manifest

integer

None.

Id

integer

None.

ReasonId

integer

None.

Reason

string

None.

Name

string

None.

Note

string

None.

CapturedByID

integer

None.

CapturedBy

string

None.

CapturedOn

date

None.

ImageBytes

Collection of byte

None.

Request Formats

application/json, text/json

Sample:
{
  "Manifest": 1,
  "Id": 2,
  "ReasonId": 3,
  "Reason": "sample string 4",
  "Name": "sample string 5",
  "Note": "sample string 6",
  "CapturedByID": 7,
  "CapturedBy": "sample string 8",
  "CapturedOn": "2025-12-11T07:28:11.6112166-06:00",
  "ImageBytes": "QEA="
}

application/xml, text/xml

Sample:
<ManifestSignature xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CrowsNest.Api">
  <CapturedBy>sample string 8</CapturedBy>
  <CapturedByID>7</CapturedByID>
  <CapturedOn>2025-12-11T07:28:11.6112166-06:00</CapturedOn>
  <Id>2</Id>
  <ImageBytes>QEA=</ImageBytes>
  <Manifest>1</Manifest>
  <Name>sample string 5</Name>
  <Note>sample string 6</Note>
  <Reason>sample string 4</Reason>
  <ReasonId>3</ReasonId>
</ManifestSignature>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>