Request Information
URI Parameters
None.
Body Parameters
The wire request.
WireRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| AdvanceAmount |
Gets or sets the advance amount. |
decimal number |
None. |
| Date |
Gets or sets the wire date. |
date |
None. |
| FedReferenceNumber |
Gets or sets the Fed reference number. |
string |
None. |
| LoanNumber |
Gets or sets the loan number identifying the application. |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"AdvanceAmount": 1.0,
"Date": "2026-05-29T18:52:44.1829413Z",
"FedReferenceNumber": "sample String 1",
"LoanNumber": "sample String 2"
}
text/html
Sample:
{"AdvanceAmount":1.0,"Date":"2026-05-29T18:52:44.1829413Z","FedReferenceNumber":"sample String 1","LoanNumber":"sample String 2"}
application/xml, text/xml
Sample:
<WireRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <AdvanceAmount>1</AdvanceAmount> <Date>2026-05-29T18:52:44.1829413Z</Date> <FedReferenceNumber>sample String 1</FedReferenceNumber> <LoanNumber>sample String 2</LoanNumber> </WireRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
The created wire.
Nano.Wire| Name | Description | Type | Additional information |
|---|---|---|---|
| advanceAmount |
Gets or sets the advance amount. |
decimal number |
None. |
| app |
Gets or sets the application identifier. |
integer |
None. |
| date |
Gets or sets the date. |
date |
None. |
| fedReferenceNumber |
Gets or sets the fed reference number. |
string |
None. |
| retracted |
Gets or sets a value indicating whether the wire is retracted. |
boolean |
None. |
| source |
Gets or sets the source (e.g. "OptiFunder" or "Internal"). |
string |
None. |
| id |
Gets or sets the wire identifier. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"advanceAmount": 1.0,
"app": "1",
"date": "2026-05-29T18:52:44.1829413Z",
"fedReferenceNumber": "sample String 3",
"retracted": true,
"source": "sample String 5",
"id": "6"
}
text/html
Sample:
{"advanceAmount":1.0,"app":"1","date":"2026-05-29T18:52:44.1829413Z","fedReferenceNumber":"sample String 3","retracted":true,"source":"sample String 5","id":"6"}
application/xml, text/xml
Sample:
<Wire xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <AdvanceAmount>1</AdvanceAmount> <AppId>1</AppId> <Date>2026-05-29T18:52:44.1829413Z</Date> <FedReferenceNumber>sample String 3</FedReferenceNumber> <Retracted>true</Retracted> <Source>sample String 5</Source> <WireId>6</WireId> </Wire>
application/vnd.api+json
Sample:
Sample not available.