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": "2f6b9987-3e78-4429-88ef-3d8b3715e171",
"ProductId": "22a1d427-1357-4ee4-b65e-00b3f6585bf0",
"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>2f6b9987-3e78-4429-88ef-3d8b3715e171</InvoiceId>
<ProductId>22a1d427-1357-4ee4-b65e-00b3f6585bf0</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": "b3d7593f-2c70-4f9d-8407-b84d41d1a56c",
"ProductId": "7176dc9b-2a74-4f13-8167-c89d4e605faf",
"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>b3d7593f-2c70-4f9d-8407-b84d41d1a56c</InvoiceId>
<ProductId>7176dc9b-2a74-4f13-8167-c89d4e605faf</ProductId>
</FinaliseMembershipResponseModel>