Openpay
  1. Authorization
Openpay
  • Getting started
  • Authorization
    • Consent screen
      GET
    • Get an access token
      POST
    • Refresh access token
      POST
  • Accounts
    • List all accounts for user
      GET
    • Get account details
      GET
    • Create an account
      POST
    • Get spending summary
      GET
  • Members
    • List members for an account
      GET
    • Get member details
      GET
    • Add a member to an account
      POST
    • Adjust the balance for a member
      PUT
    • Payment link
      GET
  • Top-ups
    • Create a new top-up for an account
      POST
    • List all top-ups for an account
      GET
    • Get top-up details
      GET
  • Statements
    • List statements for an account
      GET
  • Schemas
    • Account
    • Member
    • Top-up
    • Statement
  1. Authorization

Consent screen

GET
https://app.openpay.dk/oauth/authorize
This is where the user will grant your application access to their Openpay account. They will be asked to create an account if they haven't already done so.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://app.openpay.dk/oauth/authorize?response_type=code&client_id=YOUR_APPLICATION_ID&redirect_uri=https://your-app.com/redirect&scope=offline_access'

Request

Query Params

Responses

🟢200Success
This response does not have a body.
Modified at 2025-08-09 10:33:27
Previous
Getting started
Next
Get an access token
Built with