Available Variables#

The following methods are available to call in your Twig templates:

craft.consume.getAllClients()#

Returns a collection of Client objects.

craft.consume.getAllEnabledClients()#

Returns a collection of enabled Client objects.

craft.consume.getAllConfiguredClients()#

Returns a collection of configured Client objects.

craft.consume.getClientById(id)#

Returns a Client object by its ID.

craft.consume.getClientByHandle(handle)#

Returns a Client object by its handle.

craft.consume.fetchData(client, method, uri, options)#

Returns data from your client. See Fetching Data for further docs.

Previous ← All Providers Next Fetching Data →