ExDoppler.ServiceAccounts (ExDoppler v1.0.0)

View Source

Module for interacting with ExDoppler.ServiceAccount

๐Ÿ“– Resources

Summary

Functions

Same as list_service_accounts/1 but won't wrap a successful response in {:ok, response}

Functions

list_service_accounts(opts \\ [])

Lists ExDoppler.ServiceAccount using pagination.

๐Ÿท๏ธ Params

  • opts: Optional modifications to the list call
    • page - which page to list (starts at 1) (e.g page: 2). Default: 1
    • per_page - the number of ExDoppler.ServiceAccount to return for this page (e.g per_page: 50). Default: 20

โคต๏ธ Returns

โœ… On Success

  {:ok, [%ExDoppler.ServiceAccount{...} ...]}

โŒ On Failure

  {:err, err}

๐Ÿ“– Resources

list_service_accounts!(opts \\ [])

Same as list_service_accounts/1 but won't wrap a successful response in {:ok, response}