GET
/
v1
/
organizations
/
{org_id}
/
users
curl --request GET \
  --url https://api.codegen.com/v1/organizations/{org_id}/users
{
  "items": [
    {
      "id": 123,
      "email": "<string>",
      "github_user_id": "<string>",
      "github_username": "<string>",
      "avatar_url": "<string>",
      "full_name": "<string>"
    }
  ],
  "total": 123,
  "page": 123,
  "size": 123,
  "pages": 123
}

Headers

authorization
any

Path Parameters

org_id
string
required

Query Parameters

skip
integer
default:0
Required range: x >= 0
limit
integer
default:100
Required range: 1 <= x <= 100

Response

200
application/json
Successful Response

The response is of type object.