POST api/v2/custompayment/save/contact/{payId}

保存付款单信息

Request Information

URI Parameters

NameDescriptionTypeAdditional information
payId

付款单Id

string

Required

Body Parameters

CustomPaymentSaveContract
NameDescriptionTypeAdditional information
contact

CustomPaymentOrderContactInfo

None.

Request Formats

application/json, text/json

Sample:
{
  "contact": {
    "prefix": "sample string 1",
    "lastname": "sample string 2",
    "firstname": "sample string 3",
    "email": "sample string 4",
    "telcountry": "sample string 5",
    "phone": "sample string 6"
  }
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'CustomPaymentSaveContract'.

Response Information

Resource Description

保存付款单信息

ReturnResult
NameDescriptionTypeAdditional information
code

状态码:100成功,其他自定义

integer

None.

message

提示消息

string

None.

Response Formats

application/json, text/json

Sample:
{
  "code": 1,
  "message": "sample string 2"
}