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": "84dc5080-eae2-4084-8b50-40d952b6c8c5",
"ProductId": "919a4330-2ee3-40a7-98c7-9153a7a9280b",
"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>84dc5080-eae2-4084-8b50-40d952b6c8c5</InvoiceId>
<ProductId>919a4330-2ee3-40a7-98c7-9153a7a9280b</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": "9267cce1-67de-4585-9202-faa65332a19f",
"ProductId": "b668e666-c889-4a21-831c-1cee7c2d526d",
"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>9267cce1-67de-4585-9202-faa65332a19f</InvoiceId>
<ProductId>b668e666-c889-4a21-831c-1cee7c2d526d</ProductId>
</FinaliseMembershipResponseModel>