POST api/Workflow/FinaliseMembership
Request Information
URI Parameters
None.
Body Parameters
FinaliseMembershipResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| InvoiceId | globally unique identifier |
None. |
|
| ProductId | globally unique identifier |
None. |
|
| Result | ResponseResult |
None. |
Request Formats
application/json, text/json
Sample:
{
"InvoiceId": "50204fa8-d247-45e8-9df4-c3a855d6b820",
"ProductId": "68353685-4720-43e2-b74a-0d782a997192",
"Result": {
"Success": true,
"Message": "sample string 2",
"Errors": [
{
"Message": "sample string 1"
},
{
"Message": "sample string 1"
}
]
}
}
application/xml, text/xml
Sample:
<FinaliseMembershipResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bond.Core.API.Models.Response">
<Result>
<Errors>
<ErrorMessage>
<Message>sample string 1</Message>
</ErrorMessage>
<ErrorMessage>
<Message>sample string 1</Message>
</ErrorMessage>
</Errors>
<Message>sample string 2</Message>
<Success>true</Success>
</Result>
<InvoiceId>50204fa8-d247-45e8-9df4-c3a855d6b820</InvoiceId>
<ProductId>68353685-4720-43e2-b74a-0d782a997192</ProductId>
</FinaliseMembershipResponseModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
FinaliseMembershipResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| InvoiceId | globally unique identifier |
None. |
|
| ProductId | globally unique identifier |
None. |
|
| Result | ResponseResult |
None. |
Response Formats
application/json, text/json
Sample:
{
"InvoiceId": "4eba0446-714e-4a8c-8870-0b2ba909b55f",
"ProductId": "9f9380b1-471d-4fa6-bee9-6efe439106e3",
"Result": {
"Success": true,
"Message": "sample string 2",
"Errors": [
{
"Message": "sample string 1"
},
{
"Message": "sample string 1"
}
]
}
}
application/xml, text/xml
Sample:
<FinaliseMembershipResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bond.Core.API.Models.Response">
<Result>
<Errors>
<ErrorMessage>
<Message>sample string 1</Message>
</ErrorMessage>
<ErrorMessage>
<Message>sample string 1</Message>
</ErrorMessage>
</Errors>
<Message>sample string 2</Message>
<Success>true</Success>
</Result>
<InvoiceId>4eba0446-714e-4a8c-8870-0b2ba909b55f</InvoiceId>
<ProductId>9f9380b1-471d-4fa6-bee9-6efe439106e3</ProductId>
</FinaliseMembershipResponseModel>