apiV1MerchantsGet
دریافت لیست پذیرندهها
/api/v1/merchants
Usage and SDK Samples
curl -X GET "https://api.apieco.ir/resid/api/v1/merchants?offset=&size="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;
import java.io.File;
import java.util.*;
public class DefaultApiExample {
public static void main(String[] args) {
DefaultApi apiInstance = new DefaultApi();
String apiecoKey = apiecoKey_example; // String | apikey for use API
String authorization = authorization_example; // String | apikey for use API
String offset = offset_example; // String | میزان آفست از ابتدای لیست
String size = size_example; // String | اندازه بازه درخواستی
try {
array[inline_response_200] result = apiInstance.apiV1MerchantsGet(apiecoKey, authorization, offset, size);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling DefaultApi#apiV1MerchantsGet");
e.printStackTrace();
}
}
}
import io.swagger.client.api.DefaultApi;
public class DefaultApiExample {
public static void main(String[] args) {
DefaultApi apiInstance = new DefaultApi();
String apiecoKey = apiecoKey_example; // String | apikey for use API
String authorization = authorization_example; // String | apikey for use API
String offset = offset_example; // String | میزان آفست از ابتدای لیست
String size = size_example; // String | اندازه بازه درخواستی
try {
array[inline_response_200] result = apiInstance.apiV1MerchantsGet(apiecoKey, authorization, offset, size);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling DefaultApi#apiV1MerchantsGet");
e.printStackTrace();
}
}
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *authorization = authorization_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *offset = offset_example; // میزان آفست از ابتدای لیست
String *size = size_example; // اندازه بازه درخواستی
DefaultApi *apiInstance = [[DefaultApi alloc] init];
// دریافت لیست پذیرندهها
[apiInstance apiV1MerchantsGetWith:apiecoKey
authorization:authorization
offset:offset
size:size
completionHandler: ^(array[inline_response_200] output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var _ = require('____');
var api = new _.DefaultApi()
var apiecoKey = apiecoKey_example; // {String} apikey for use API
var authorization = authorization_example; // {String} apikey for use API
var offset = offset_example; // {String} میزان آفست از ابتدای لیست
var size = size_example; // {String} اندازه بازه درخواستی
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.apiV1MerchantsGet(apiecoKey, authorization, offset, size, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class apiV1MerchantsGetExample
{
public void main()
{
var apiInstance = new DefaultApi();
var apiecoKey = apiecoKey_example; // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
var authorization = authorization_example; // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
var offset = offset_example; // String | میزان آفست از ابتدای لیست
var size = size_example; // String | اندازه بازه درخواستی
try
{
// دریافت لیست پذیرندهها
array[inline_response_200] result = apiInstance.apiV1MerchantsGet(apiecoKey, authorization, offset, size);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DefaultApi.apiV1MerchantsGet: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\Api\DefaultApi();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$authorization = authorization_example; // String | apikey for use API
$offset = offset_example; // String | میزان آفست از ابتدای لیست
$size = size_example; // String | اندازه بازه درخواستی
try {
$result = $api_instance->apiV1MerchantsGet($apiecoKey, $authorization, $offset, $size);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->apiV1MerchantsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;
my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $authorization = authorization_example; # String | apikey for use API
my $offset = offset_example; # String | میزان آفست از ابتدای لیست
my $size = size_example; # String | اندازه بازه درخواستی
eval {
my $result = $api_instance->apiV1MerchantsGet(apiecoKey => $apiecoKey, authorization => $authorization, offset => $offset, size => $size);
print Dumper($result);
};
if ($@) {
warn "Exception when calling DefaultApi->apiV1MerchantsGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = swagger_client.DefaultApi()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
authorization = authorization_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
offset = offset_example # String | میزان آفست از ابتدای لیست
size = size_example # String | اندازه بازه درخواستی
try:
# دریافت لیست پذیرندهها
api_response = api_instance.api_v1_merchants_get(apiecoKey, authorization, offset, size)
pprint(api_response)
except ApiException as e:
print("Exception when calling DefaultApi->apiV1MerchantsGet: %s\n" % e)
Parameters
Header parameters
Name | Description |
---|---|
apieco-key* |
String
apikey for use API
Required
|
Authorization* |
Query parameters
Name | Description |
---|---|
offset* |
String
میزان آفست از ابتدای لیست
Required
|
size* |
String
اندازه بازه درخواستی
Required
|