- Getting Started
- API Methods
Retrieve list of the current Lnk Groups in your account
GET
https://lnk.bio/oauth/v1/group/list
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