userOrgPageList
List all organizations of the current user. This interface must have scope permissions of user or read:org, otherwise 403 will be returned.
Query Parameters
- since integer
start page
- per_page integer
Maximum number per page, maximum limit is 50
Header Parameters
- Authorization required
Oauth2 token or private token (needs to start with Bearer plus a space)
Responses
- 200
- 401
- 403
Success
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- login string
organization name
- id string
organization id
- url string
Organization's OepnApi address
- repos_url string
organization’s repos address
- events_url string
The organization’s event address
- hooks_url string
Organization’s hooks address
- issues_url string
The organization’s issue address
- members_url string
The organization’s members address
- public_members_url string
The organization’s public members address
- avatar_url string
Organization avatar address
- description string
description of the organization
- ]
[
{
"login": "csdn",
"id": "62b59720cbcaeffdff0148ce",
"url": "https://api.atomgit.com/orgs/csdn",
"repos_url": "https://api.atomgit.com/orgs/csdn/repos",
"events_url": "https://api.atomgit.com/orgs/csdn/events",
"hooks_url": "https://api.atomgit.com/orgs/csdn/hooks",
"issues_url": "https://api.atomgit.com/orgs/csdn_test2/issues",
"members_url": "https://api.atomgit.com/orgs/csdn/members/{/member}",
"public_members_url": "https://api.atomgit.com/orgs/csdn/public_members/{/member}",
"avatar_url": "https://img-host/uploads/org/1656042927816_7741.png",
"description": "csdn is a goog website"
}
]
Operation failed, not logged in yet
No permission yet, operation failed
Loading...