GET /api/silicon-mark/test-job/token-info

Get your job-token information which created by the test-job.

Authorization

🔒OAuth2: OAuth2PasswordBearer
Flow type: password
Token URL: token

Responses

  • 200: Successful Response
null

POST /api/silicon-mark/test-job/info

Get a test_jobs detail information.

Authorization

🔒OAuth2: OAuth2PasswordBearer
Flow type: password
Token URL: token

Request Body

The request body must be in application/json format.

FieldTypeRequiredDescriptionConstraints
idintegerYes?id as string convert from int
namestringYes?Name
property namestringYes?Any

Request Example

{
  "id": 0,
  "name": "string"
}

Responses

  • 200: Successful Response
  null
  • 422: Validation Error
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}

POST /api/silicon-mark/test-job/list

Search test_jobs list by condition.

Authorization

🔒OAuth2: OAuth2PasswordBearer
Flow type: password
Token URL: token

Request Body

The request body must be in application/json format.

FieldTypeRequiredDescriptionConstraints
filterarray of objectsYes?Filter listDefault: []
order_byarray of objectsNo?Order by listDefault: []
paginateobject?No?PaginationDefault: num_per_page”:50,“page_num”:1
property namestring?Yes?Any

Request Example

{
  "filter": [
    {}
  ],
  "order_by": [
    {}
  ],
  "paginate": {
    "num_per_page": 50,
    "page_num": 1
  }
}

Responses

  • 200: Successful Response
null
  • 422: Validation Error
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}

DELETE /api/silicon-mark/test-job/delete

Delete a test_jobs record by id or name.

Authorization

🔒OAuth2: OAuth2PasswordBearer
Flow type: password
Token URL: token

Request Body

The request body must be in application/json format.

FieldTypeRequiredDescriptionConstraints
idintegerYes?id as string convert from int
namestringYes?Name
property namestringYes?Any

Request Example

{
  "id": 0,
  "name": "string"
}

Responses

  • 200: Successful Response
null
  • 422: Validation Error
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}