GET payment-gateways/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
ResultOfPaymentGatewayDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | PaymentGatewayDto |
None. |
|
| Messages | Collection of string |
None. |
|
| Succeeded | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"ID": "85cebbfd-c2be-483d-8690-fb0843e2a103",
"Name": "sample string 2",
"Provider": 3,
"ProviderName": "sample string 4",
"MerchantKey": "sample string 5",
"MerchantSecret": "sample string 6"
},
"Messages": [
"sample string 1",
"sample string 2"
],
"Succeeded": true
}
application/xml, text/xml
Sample:
<ResultOfPaymentGatewayDto6MSA0GaG xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZoeLife.Shared.Wrapper">
<Messages xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Messages>
<Succeeded>true</Succeeded>
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/ZoeLife.BusinessEntities">
<d2p1:ID>85cebbfd-c2be-483d-8690-fb0843e2a103</d2p1:ID>
<d2p1:MerchantKey>sample string 5</d2p1:MerchantKey>
<d2p1:MerchantSecret>sample string 6</d2p1:MerchantSecret>
<d2p1:Name>sample string 2</d2p1:Name>
<d2p1:Provider>3</d2p1:Provider>
<d2p1:ProviderName>sample string 4</d2p1:ProviderName>
</Data>
</ResultOfPaymentGatewayDto6MSA0GaG>