POST api/MTForms/Signature/Insert
Request Information
URI Parameters
None.
Body Parameters
SignatureModel| Name | Description | Type | Additional information |
|---|---|---|---|
| USERNAME | string |
None. |
|
| EMPLOYEEID | string |
None. |
|
| SIGNATURENAME | string |
None. |
|
| SIGNATUREDATA | Collection of byte |
None. |
|
| DTCREATED | date |
None. |
|
| DTMODIFIED | date |
None. |
|
| HONORIFICS | string |
None. |
|
| USER_DEPT | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"USERNAME": "sample string 1",
"EMPLOYEEID": "sample string 2",
"SIGNATURENAME": "sample string 3",
"SIGNATUREDATA": "QEA=",
"DTCREATED": "2025-12-21T21:53:03.1685388-08:00",
"DTMODIFIED": "2025-12-21T21:53:03.1685388-08:00",
"HONORIFICS": "sample string 6",
"USER_DEPT": "sample string 7"
}
application/xml, text/xml
Sample:
<SignatureModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MTServiceAPI.Models.MTForms"> <DTCREATED>2025-12-21T21:53:03.1685388-08:00</DTCREATED> <DTMODIFIED>2025-12-21T21:53:03.1685388-08:00</DTMODIFIED> <EMPLOYEEID>sample string 2</EMPLOYEEID> <HONORIFICS>sample string 6</HONORIFICS> <SIGNATUREDATA>QEA=</SIGNATUREDATA> <SIGNATURENAME>sample string 3</SIGNATURENAME> <USERNAME>sample string 1</USERNAME> <USER_DEPT>sample string 7</USER_DEPT> </SignatureModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | Status |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 0,
"Description": "sample string 1"
}
application/xml, text/xml
Sample:
<RequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MTServiceAPI.Models"> <Description>sample string 1</Description> <Status>Ok</Status> </RequestModel>