GET CompanyUsersPaymentMethod?idCompanyUserPaymentMethod={idCompanyUserPaymentMethod}&page={page}&pageSize={pageSize}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| idCompanyUserPaymentMethod | globally unique identifier |
None. |
|
| page | integer |
Default value is 1 |
|
| pageSize | integer |
Default value is 50 |
Body Parameters
None.
Response Information
Resource Description
Collection of CompanyUserPaymentMethodDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Label | string |
None. |
|
| PAN | string |
None. |
|
| Token | string |
None. |
|
| State | byte |
None. |
|
| RedirectData | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "31abe9ec-af70-4eb6-b645-3a956b1f1db5",
"Label": "sample string 2",
"PAN": "sample string 3",
"Token": "sample string 4",
"State": 64,
"RedirectData": "sample string 6"
},
{
"Id": "31abe9ec-af70-4eb6-b645-3a956b1f1db5",
"Label": "sample string 2",
"PAN": "sample string 3",
"Token": "sample string 4",
"State": 64,
"RedirectData": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfCompanyUserPaymentMethodDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model">
<CompanyUserPaymentMethodDto>
<Id>31abe9ec-af70-4eb6-b645-3a956b1f1db5</Id>
<Label>sample string 2</Label>
<PAN>sample string 3</PAN>
<RedirectData>sample string 6</RedirectData>
<State>64</State>
<Token>sample string 4</Token>
</CompanyUserPaymentMethodDto>
<CompanyUserPaymentMethodDto>
<Id>31abe9ec-af70-4eb6-b645-3a956b1f1db5</Id>
<Label>sample string 2</Label>
<PAN>sample string 3</PAN>
<RedirectData>sample string 6</RedirectData>
<State>64</State>
<Token>sample string 4</Token>
</CompanyUserPaymentMethodDto>
</ArrayOfCompanyUserPaymentMethodDto>