We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Returns a paginated list of the store's attributes.
const attributes = getAttributeList(client, { limit: 25, page: 1 })
const attributes = getAttributeList(client, options);
client
options
page
limit
sort
The text was updated successfully, but these errors were encountered:
bonofiglio
No branches or pull requests
Returns a paginated list of the store's attributes.
Example
API
client
: See SwellClient.options
(object, optional): Options for filtering and paginating the response.page
(number, optional): For pagination purposes. The attributes retrieved will start at the pointer specified by this field.limit
(number, optional): Max number of attributes to return per page. Defaults to 15, with a maximum of 100.sort
(string, optional): Field to sort responses by.The text was updated successfully, but these errors were encountered: