POST api/v1/escrow/create

Create a new Escrow Project.

Request Information

URI Parameters

None.

Body Parameters

EscrowProjectBindingModel
NameDescriptionTypeAdditional information
Authentication

AuthenticationModel

Required

Request

EscrowProjectRequestModel

Required

Request Formats

application/json, text/json

Sample:
{
  "Authentication": {
    "Id": "sample string 1",
    "Key": "sample string 2"
  },
  "Request": {
    "PayerEmail": "sample string 1",
    "PayeeEmail": "sample string 2",
    "ProjectFee": "sample string 3",
    "ProjectValue": "sample string 4",
    "TechnologyFee": "sample string 5",
    "DiscountCode": "sample string 6",
    "MarketingMotion": "sample string 7"
  }
}

application/xml, text/xml

Sample:
<EscrowProjectBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiModels">
  <Authentication xmlns:d2p1="http://schemas.datacontract.org/2004/07/Api.Models">
    <d2p1:Id>sample string 1</d2p1:Id>
    <d2p1:Key>sample string 2</d2p1:Key>
  </Authentication>
  <Request>
    <DiscountCode>sample string 6</DiscountCode>
    <MarketingMotion>sample string 7</MarketingMotion>
    <PayeeEmail>sample string 2</PayeeEmail>
    <PayerEmail>sample string 1</PayerEmail>
    <ProjectFee>sample string 3</ProjectFee>
    <ProjectValue>sample string 4</ProjectValue>
    <TechnologyFee>sample string 5</TechnologyFee>
  </Request>
</EscrowProjectBindingModel>

Response Information

Resource Description

ContactsOutgoingModel
NameDescriptionTypeAdditional information
Message

MessageModel

None.

Response Formats

application/json, text/json

Sample:
{
  "Message": {
    "Code": "(2 digit code reflecting result of request - 00 is good)",
    "Description": "(Message response in text depending upon request/result of request)"
  }
}

application/xml, text/xml

Sample:
<ContactsOutgoingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiModels">
  <Message xmlns:d2p1="http://schemas.datacontract.org/2004/07/Api.Models">
    <d2p1:Code>(2 digit code reflecting result of request - 00 is good)</d2p1:Code>
    <d2p1:Description>(Message response in text depending upon request/result of request)</d2p1:Description>
  </Message>
</ContactsOutgoingModel>