AdyenClient.Management.Stores (AdyenClient v1.0.0)

Copy Markdown View Source

Management API — Store operations.

Summary

Functions

Create a store under a merchant.

Get a store by merchant and store ID.

Get a store by store ID only.

List stores under a merchant.

List all stores (global, across merchants).

Update a store by store ID only.

Functions

create(merchant_id, params, opts \\ [])

@spec create(String.t(), map(), keyword()) :: AdyenClient.Client.response()

Create a store under a merchant.

get(merchant_id, store_id, opts \\ [])

Get a store by merchant and store ID.

get_by_id(store_id, opts \\ [])

@spec get_by_id(
  String.t(),
  keyword()
) :: AdyenClient.Client.response()

Get a store by store ID only.

list(merchant_id, query \\ %{}, opts \\ [])

@spec list(String.t(), map(), keyword()) :: AdyenClient.Client.response()

List stores under a merchant.

list_all(query \\ %{}, opts \\ [])

@spec list_all(
  map(),
  keyword()
) :: AdyenClient.Client.response()

List all stores (global, across merchants).

update(merchant_id, store_id, params, opts \\ [])

@spec update(String.t(), String.t(), map(), keyword()) ::
  AdyenClient.Client.response()

Update a store.

update_by_id(store_id, params, opts \\ [])

@spec update_by_id(String.t(), map(), keyword()) :: AdyenClient.Client.response()

Update a store by store ID only.