HTTP + JSV
The following are sample HTTP requests and responses.
The placeholders shown need to be replaced with actual values.
POST /jsv/reply/AppraisalOrderRequest HTTP/1.1
Host: api.batonrougeappraisal.com
Content-Type: text/jsv
Content-Length: length
{
AppraisalOrder:
{
Id: 0,
ClientName: String,
IntendedUse: String,
PropertyAddress: String,
VacantLand: String,
PropertyHome: String,
EmailAddress: String,
PhoneNumber: String,
NeededBy: String,
Notes: String,
DateCreated: 0001-01-01,
Cost: 0
},
CreditCardToken: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String
}
]
},
AppraisalOrder:
[
{
Id: 0,
ClientName: String,
IntendedUse: String,
PropertyAddress: String,
VacantLand: String,
PropertyHome: String,
EmailAddress: String,
PhoneNumber: String,
NeededBy: String,
Notes: String,
DateCreated: 0001-01-01,
Cost: 0
}
]
}