Lnk.Bio
  1. Groups
Lnk.Bio
  • Getting Started
    • Introduction
    • Endpoints
    • Authorization
    • Private Apps
      • Introduction
      • Create a Private App
      • Generate an Access Token
    • Public Apps
      • Introduction
      • Create a Public App
      • Generate an Access Token
  • API Methods
    • Me
      • Retrieve basic profile info
    • Lnks
      • Retrieve list of the current Lnks in your account
      • Create a new Lnk
      • Delete an existing Lnk
    • Groups
      • Retrieve list of the current Lnk Groups in your account
        GET
  1. Groups

Retrieve list of the current Lnk Groups in your account

GET
https://lnk.bio/oauth/v1/group/list
Only available for MINI subscribers

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************

Request 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://lnk.bio/oauth/v1/group/list'

Responses

🟢200Success
application/json
Body
status
boolean 
optional
Example:
true
errors
array[string]
optional
info
object 
optional
groups
array [object {2}] 
optional
Example
{
  "status": true,
  "errors": [
    null
  ],
  "info": {
    "groups": [
      {
        "group_id": 12345678,
        "group_name": "Title of the Group"
      }
    ]
  }
}
🟠401Not Authenticated
Previous
Delete an existing Lnk
Built with