メインコンテンツへスキップ
GET
/
v1
/
preview
/
training-jobs
/
{training_job_id}
/
events
Get Training Job Events
curl --request GET \
  --url https://api.example.com/v1/preview/training-jobs/{training_job_id}/events \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "type": "training_started",
      "data": {}
    }
  ],
  "has_more": true,
  "object": "list",
  "first_id": "",
  "last_id": ""
}

承認

Authorization
string
header
必須

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

パスパラメータ

training_job_id
string
必須

クエリパラメータ

after
string

Cursor for pagination

limit
integer
デフォルト:20

Number of items to return

必須範囲: 1 <= x <= 100

レスポンス

Successful Response

data
TrainingJobEventResponse · object[]
必須

Array of items

has_more
boolean
必須

Whether there are more items available

object
string
デフォルト:list

Object type identifier

first_id
string
デフォルト:""

ID of the first item in the current page

last_id
string
デフォルト:""

ID of the last item in the current page