const sitesApi = client.sitesApi;
SitesApi
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.
async listSites(requestOptions?: RequestOptions): Promise<ApiResponse<ListSitesResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
try {
const { result, ...httpResponse } = await sitesApi.listSites();
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}