Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 852 Bytes

sites.md

File metadata and controls

37 lines (23 loc) · 852 Bytes

Sites

sites_api = client.sites

Class Name

SitesApi

List Sites

Lists the Square Online sites that belong to a seller. Sites are listed in descending order by the created_at date.

Note: Square Online APIs are publicly available as part of an early access program. For more information, see Early access program for Square Online APIs.

def list_sites

Response Type

This method returns a \ApiResponse instance. The data property in this instance returns the response data which is of type List Sites Response Hash.

Example Usage

result = sites_api.list_sites

if result.success?
  puts result.data
elsif result.error?
  warn result.errors
end