Get project subjects.
Get project subjects.
Get project subjects.
Path Parameters
project string required
Query Parameters
sort string[]
query string
perPage integer
Default value: 100
page integer
Default value: 1
extract string[]
Responses
- 200
- 400
- 401
- 403
- 404
- 408
- 409
- 415
- 422
- 429
- 500
- 503
- default
OK
application/json
Schema
Example (from schema)
Schema
items object[]
pagination object
type string
{
"items": [
{
"createTime": "2024-03-13T02:09:57.666Z",
"id": "string",
"project": {
"createTime": "2024-03-13T02:09:57.666Z",
"description": "string",
"id": "string",
"labels": {},
"name": "string",
"updateTime": "2024-03-13T02:09:57.666Z"
},
"role": {
"applicableEnvironmentTypes": [
"string"
],
"builtin": true,
"createTime": "2024-03-13T02:09:57.666Z",
"description": "string",
"id": "string",
"kind": "string",
"policies": [
{
"actions": [
"string"
],
"paths": [
"string"
],
"resourceRefers": [
"string"
],
"resources": [
"string"
]
}
],
"updateTime": "2024-03-13T02:09:57.666Z"
},
"subject": {
"builtin": true,
"createTime": "2024-03-13T02:09:57.666Z",
"description": "string",
"domain": "string",
"id": "string",
"kind": "string",
"name": "string",
"roles": [
{
"createTime": "2024-03-13T02:09:57.666Z",
"id": "string",
"project": {
"createTime": "2024-03-13T02:09:57.666Z",
"description": "string",
"id": "string",
"labels": {},
"name": "string",
"updateTime": "2024-03-13T02:09:57.666Z"
},
"role": {
"applicableEnvironmentTypes": [
"string"
],
"builtin": true,
"createTime": "2024-03-13T02:09:57.666Z",
"description": "string",
"id": "string",
"kind": "string",
"policies": [
{
"actions": [
"string"
],
"paths": [
"string"
],
"resourceRefers": [
"string"
],
"resources": [
"string"
]
}
],
"updateTime": "2024-03-13T02:09:57.666Z"
},
"subject": {
"builtin": true,
"createTime": "2024-03-13T02:09:57.666Z",
"description": "string",
"domain": "string",
"id": "string",
"kind": "string",
"name": "string",
"roles": [
null
],
"updateTime": "2024-03-13T02:09:57.666Z"
}
}
],
"updateTime": "2024-03-13T02:09:57.666Z"
}
}
],
"pagination": {
"nextPage": 0,
"page": 0,
"partial": 0,
"perPage": 0,
"total": 0,
"totalPage": 0
},
"type": "string"
}
Bad Request
application/json
Schema
Example (from schema)
Schema
message string
status integer
Default value: 400
statusText string
Default value: Bad Request
{
"message": "string",
"status": 400,
"statusText": "Bad Request"
}
Unauthorized
application/json
Schema
Example (from schema)
Schema
message string
status integer
Default value: 401
statusText string
Default value: Unauthorized
{
"message": "string",
"status": 401,
"statusText": "Unauthorized"
}
Forbidden
application/json
Schema
Example (from schema)
Schema
message string
status integer
Default value: 403
statusText string
Default value: Forbidden
{
"message": "string",
"status": 403,
"statusText": "Forbidden"
}
Not Found
application/json
Schema
Example (from schema)
Schema
message string
status integer
Default value: 404
statusText string
Default value: Not Found
{
"message": "string",
"status": 404,
"statusText": "Not Found"
}
Request Timeout
application/json
Schema
Example (from schema)
Schema
message string
status integer
Default value: 408
statusText string
Default value: Request Timeout
{
"message": "string",
"status": 408,
"statusText": "Request Timeout"
}
Conflict
application/json
Schema
Example (from schema)
Schema
message string
status integer
Default value: 409
statusText string
Default value: Conflict
{
"message": "string",
"status": 409,
"statusText": "Conflict"
}
Unsupported Media Type
application/json
Schema
Example (from schema)
Schema
message string
status integer
Default value: 415
statusText string
Default value: Unsupported Media Type
{
"message": "string",
"status": 415,
"statusText": "Unsupported Media Type"
}
Unprocessable Entity
application/json
Schema
Example (from schema)
Schema
message string
status integer
Default value: 422
statusText string
Default value: Unprocessable Entity
{
"message": "string",
"status": 422,
"statusText": "Unprocessable Entity"
}
Too Many Requests
application/json
Schema
Example (from schema)
Schema
message string
status integer
Default value: 429
statusText string
Default value: Too Many Requests
{
"message": "string",
"status": 429,
"statusText": "Too Many Requests"
}
Internal Server Error
application/json
Schema
Example (from schema)
Schema
message string
status integer
Default value: 500
statusText string
Default value: Internal Server Error
{
"message": "string",
"status": 500,
"statusText": "Internal Server Error"
}
Service Unavailable
application/json
Schema
Example (from schema)
Schema
message string
status integer
Default value: 503
statusText string
Default value: Service Unavailable
{
"message": "string",
"status": 503,
"statusText": "Service Unavailable"
}
GET /v1/projects/:project/subjects
Authorization
name: BasicAuthtype: httpdescription: Basic Authentication, in form of base64(<username>:<password>), the password must be a valid Seal API token.in: headerscheme: basic
Request
Request
curl / cURL
curl -L -X GET 'https://seal-io.github.io/v1/projects/:project/subjects' \
-H 'Accept: application/json'
python / requests
curl -L -X GET 'https://seal-io.github.io/v1/projects/:project/subjects' \
-H 'Accept: application/json'
go / native
curl -L -X GET 'https://seal-io.github.io/v1/projects/:project/subjects' \
-H 'Accept: application/json'
nodejs / axios
curl -L -X GET 'https://seal-io.github.io/v1/projects/:project/subjects' \
-H 'Accept: application/json'
ruby / Net::HTTP
curl -L -X GET 'https://seal-io.github.io/v1/projects/:project/subjects' \
-H 'Accept: application/json'
csharp / RestSharp
curl -L -X GET 'https://seal-io.github.io/v1/projects/:project/subjects' \
-H 'Accept: application/json'
php / cURL
curl -L -X GET 'https://seal-io.github.io/v1/projects/:project/subjects' \
-H 'Accept: application/json'
java / OkHttp
curl -L -X GET 'https://seal-io.github.io/v1/projects/:project/subjects' \
-H 'Accept: application/json'
powershell / RestMethod
curl -L -X GET 'https://seal-io.github.io/v1/projects/:project/subjects' \
-H 'Accept: application/json'