Sha256: 00d62e30c7b7e102c8914f814c519a0284419226ddf84e219e563f3c106b8faf
Contents?: true
Size: 1.03 KB
Versions: 14
Compression:
Stored size: 1.03 KB
Contents
# Atrium::MerchantsApi Method | HTTP request | Description ------------- | ------------- | ------------- [**read_merchant**](MerchantsApi.md#read_merchant) | **GET** /merchants/{merchant_guid} | Read merchant # **read_merchant** > MerchantResponseBody read_merchant(merchant_guid) Read merchant Returns information about a particular merchant, such as a logo, name, and website. ### Example ```ruby # load the gem require 'atrium-ruby' client = Atrium::AtriumClient.new("YOUR_API_KEY", "YOUR_CLIENT_ID") merchant_guid = "MCH-123" # String | The unique identifier for a `merchant`. begin #Read merchant response = client.merchants.read_merchant(merchant_guid) p response rescue Atrium::ApiError => e puts "Exception when calling MerchantsApi->read_merchant: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **merchant_guid** | **String**| The unique identifier for a `merchant`. | ### Return type [**MerchantResponseBody**](MerchantResponseBody.md)
Version data entries
14 entries across 14 versions & 1 rubygems