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": "79a8dbf2-27fe-4bb9-b1ff-d6ed0584a7f9",
"ProductId": "e716b786-4834-4be3-8437-aeaa5299b8f3",
"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>79a8dbf2-27fe-4bb9-b1ff-d6ed0584a7f9</InvoiceId>
<ProductId>e716b786-4834-4be3-8437-aeaa5299b8f3</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": "a83aeee8-4ae8-45c3-a11d-1f884eb5d509",
"ProductId": "f6214e95-ea41-4517-a94b-d127d35c3e1a",
"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>a83aeee8-4ae8-45c3-a11d-1f884eb5d509</InvoiceId>
<ProductId>f6214e95-ea41-4517-a94b-d127d35c3e1a</ProductId>
</FinaliseMembershipResponseModel>