Skip to main content
POST
/
api
/
gitlab
/
groups
/gitlab/groups
curl --request POST \
  --url https://api.anysite.io/api/gitlab/groups \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "group": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "alias": "<string>",
    "name": "<string>",
    "@type": "@gitlab_group",
    "full_name": "",
    "full_path": "",
    "path": "",
    "description": "<string>",
    "visibility": "",
    "web_url": "",
    "image": "<string>",
    "created_at": "",
    "parent_id": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
group
string
required

Group numeric id, full path, or group URL

Minimum string length: 1
Examples:

"gitlab-org"

"9970"

"gitlab-org/quality"

"https://gitlab.com/groups/gitlab-org"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
alias
string
required
name
string
required
@type
string
default:@gitlab_group
full_name
string
default:""
full_path
string
default:""
path
string
default:""
description
string | null
visibility
string
default:""
web_url
string
default:""
image
string | null
created_at
string
default:""
parent_id
integer | null