Synswi
  1. Identity
Synswi
  • Guides
    • Getting Started With the API
  • API Reference
    • Accounts
      • Onboarding forms
        • Create a Onboarding Form
      • Get account setting
      • Update account setting
      • Get profile
      • Create new profile
      • Register webhook
    • Devices
      • Get Devices
    • Dispute
      • Get disputes
    • Invoice
      • Get invoice by id
      • Get invoices
      • Create an invoice
      • Pay an invoice
      • Send Invoice
      • Update an invoice
    • Payment instruments
      • Create a payment instrument
      • Get payment instruments
      • Get a payment instrument by id
      • Create a Payment Instrument
    • Transactions
      • Get a transaction by id
      • Get transactions
      • Create a transaction
    • Settlements
      • get settlements
      • get settlement entries
    • Identity
      • Register an user
        POST
      • Validate Token
        POST
      • Create an api key
        POST
      • List api keys
        GET
      • Get Users
        GET
    • Programs
      • Accounts
    • Permission
      • Verify user permissions
      • Get Account Users
  1. Identity

List api keys

Developing
GET
https://api-dev.synswi.com/identity/api-keys

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api-dev.synswi.com/identity/api-keys' \
--header 'Authorization: Bearer <token>'

Responses

🟢200OK
application/json
Body

Example
{
    "apiKeys": [
        {
            "_id": "string",
            "createdAt": "string",
            "token": "string",
            "userId": "string",
            "type": "string",
            "lastUsed": "string"
        }
    ]
}
Previous
Create an api key
Next
Get Users
Built with