POST /api/silicon-mark/test-task/register

Create test_tasks.

Authorization

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

Request Body

The request body must be in application/json format.

FieldTypeRequiredDescriptionConstraints
machine_uuidstringYesMachine uuid[ 1 .. 60 ] characters
machine_inventoryarrayNoMachine configuration information
descriptionstringNoDescription
property nameanyYes?Any

Request Example

{
{
  "machine_uuid": "string",
  "machine_inventory": [
    null
  ],
  "description": "string"
}
}

Responses

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

POST /api/silicon-mark/test-task/update

Update test_tasks.

Authorization

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

Request Body

The request body must be in application/json format.

FieldTypeRequiredDescriptionConstraints
task_idintegerYesid as string convert from int
statearrayNoTask state
failed_messagearrayNoFailed message
descriptionstringNoDescription
property nameanyYes?

Request Example

{
  "task_id": 0,
  "state": "string",
  "failed_message": "string",
  "description": "string"
}

Responses

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

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

Get a test_tasks detail information.

Authorization

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

Request Body

The request body must be in application/json format.

FieldTypeRequiredDescriptionConstraints
task_idintegerYesid as string convert from int
machine_uuidstringNoMachine uuid
property nameanyNo

Request Example

{
  "task_id": 0,
  "machine_uuid": "string"
}

Responses

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

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

Search test_tasks 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

Any of SearchBody

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

Any of the parameter for data query

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

Optional parameters

Responses

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

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

Delete a test_tasks 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
task_idintegerYesid as string convert from int
machine_uuidstringNoMachine uuid
property namestring?Yes?Any

Request Example

{
  "task_id": 0,
  "machine_uuid": "string"
}

Responses

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

POST /api/silicon-mark/test-task/pdf-report-url

Get a test_tasks pdf report download url.

Request Body

The request body must be in application/json format.

FieldTypeRequiredDescriptionConstraints
idintegerYes?id as string convert from int
property namestring?Yes?Any

Request Example

{
  "id": 0
}

Responses

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