Packages
mollie_api
0.1.0-20260430
0.1.0-20260722
0.1.0-20260721
0.1.0-20260717
0.1.0-20260716
0.1.0-20260708
0.1.0-20260702
0.1.0-20260629
0.1.0-20260625
0.1.0-20260622
0.1.0-20260619
0.1.0-20260617
0.1.0-20260615
0.1.0-20260611
0.1.0-20260609
0.1.0-20260601
0.1.0-20260529
0.1.0-20260527
0.1.0-20260526
0.1.0-20260525
0.1.0-20260521
0.1.0-20260519
0.1.0-20260515
0.1.0-20260513
0.1.0-20260512
0.1.0-20260507
0.1.0-20260505
0.1.0-20260504
0.1.0-20260430
0.1.0-20260429
0.1.0-20260428
0.1.0-20260427
0.1.0-20260423
0.1.0-20260421
0.1.0-20260420
0.1.0-20260415
0.1.0-20260410
0.1.0-20260409
0.1.0-20260408
0.1.0-20260402
0.1.0-20260401
0.1.0-20260331
0.1.0-20260330
0.1.0-20260327
0.1.0-20260317
0.1.0-20260313
0.1.0-20260310
0.1.0-20260309
0.1.0-20260306
0.1.0-20260305
0.1.0-20260303
0.1.0-20260302
0.1.0-20260226
0.1.0-20260218
0.1.0-20260217
0.1.0-20260210
0.1.0-20260206
0.1.0-20260205
0.1.0-20260204
0.1.0-20260203
0.1.0-20260202
0.1.0-20260130
0.1.0-20260129
0.1.0-20260114
0.1.0-20260109
0.1.0-20260107
0.1.0-20251222
0.1.0-20251125
0.1.0-20251121
0.1.0-20251119
0.1.0-20251118
0.1.0-20251113
An autogenerated Elixir client for the Mollie API, generated from the OpenAPI specification.
Current section
Files
Jump to
Current section
Files
lib/mollie_api/api/o_auth_api.ex
# NOTE: This file is auto generated by OpenAPI Generator 7.17.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule MollieAPI.Api.OAuthAPI do
@moduledoc """
API calls for all endpoints tagged `OAuthAPI`.
"""
alias MollieAPI.Connection
import MollieAPI.RequestBuilder
@doc """
Generate tokens
Exchange the authorization code you received from the [Authorize endpoint](oauth-authorize) for an 'access token' API credential, with which you can communicate with the Mollie API on behalf of the consenting merchant. This endpoint can only be accessed using **OAuth client credentials**.
### Parameters
- `connection` (MollieAPI.Connection): Connection to server
- `authorization` (String.t): The OAuth client ID and client secret as [basic access credentials](https://en.wikipedia.org/wiki/Basic_access_authentication). Pseudo code: `\"Basic \" + toBase64(client_id + \":\" + client_secret)` For example: `Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==`
- `opts` (keyword): Optional parameters
- `:"Content-Type"` (String.t): This header value must match the type of the request body you send, if there is a request body. For example, if you send the request body as JSON, this header must be set to `application/json`, and if you send it as form encoded you must set this header to `application/x-www-form-urlencoded`.
- `:"idempotency-key"` (String.t): A unique key to ensure idempotent requests. This key should be a UUID v4 string.
- `:body` (OauthGenerateTokensRequest):
### Returns
- `{:ok, MollieAPI.Model.OauthGenerateTokens200Response.t}` on success
- `{:error, Tesla.Env.t}` on failure
"""
@spec oauth_generate_tokens(Tesla.Env.client, String.t, keyword()) :: {:ok, MollieAPI.Model.OauthGenerateTokens200Response.t} | {:error, Tesla.Env.t}
def oauth_generate_tokens(connection, authorization, opts \\ []) do
optional_params = %{
:"Content-Type" => :headers,
:"idempotency-key" => :headers,
:body => :body
}
request =
%{}
|> method(:post)
|> url("/oauth2/tokens")
|> add_param(:headers, :Authorization, authorization)
|> add_optional_params(optional_params, opts)
|> ensure_body()
|> Enum.into([])
connection
|> Connection.request(request)
|> evaluate_response([
{200, MollieAPI.Model.OauthGenerateTokens200Response}
])
end
@doc """
Revoke tokens
Revoke an access token or refresh token. Once revoked, the token can no longer be used. Revoking a refresh token revokes all access tokens that were created using the same authorization. This endpoint can only be accessed using **OAuth client credentials**.
### Parameters
- `connection` (MollieAPI.Connection): Connection to server
- `authorization` (String.t): The OAuth client ID and client secret as [basic access credentials](https://en.wikipedia.org/wiki/Basic_access_authentication). Pseudo code: `\"Basic \" + toBase64(client_id + \":\" + client_secret)` For example: `Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==`
- `opts` (keyword): Optional parameters
- `:"Content-Type"` (String.t): This header value must match the type of the request body you send, if there is a request body. For example, if you send the request body as JSON, this header must be set to `application/json`, and if you send it as form encoded you must set this header to `application/x-www-form-urlencoded`.
- `:"idempotency-key"` (String.t): A unique key to ensure idempotent requests. This key should be a UUID v4 string.
- `:body` (OauthRevokeTokensRequest):
### Returns
- `{:ok, nil}` on success
- `{:error, Tesla.Env.t}` on failure
"""
@spec oauth_revoke_tokens(Tesla.Env.client, String.t, keyword()) :: {:ok, nil} | {:error, Tesla.Env.t}
def oauth_revoke_tokens(connection, authorization, opts \\ []) do
optional_params = %{
:"Content-Type" => :headers,
:"idempotency-key" => :headers,
:body => :body
}
request =
%{}
|> method(:delete)
|> url("/oauth2/tokens")
|> add_param(:headers, :Authorization, authorization)
|> add_optional_params(optional_params, opts)
|> Enum.into([])
connection
|> Connection.request(request)
|> evaluate_response([
{204, false}
])
end
end