Logs
Returns the requested logs.
Args: logs_id: ID of the logs. hydrate: Flag deciding whether to hydrate the output model(s) by including metadata fields in the response.
Returns: The requested logs.
Authorizations
Path parameters
logs_idstring · uuidRequired
Query parameters
hydratebooleanOptionalDefault:
true
Responses
200
Successful Response
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
404
Not Found
application/json
422
Unprocessable Entity
application/json
get
GET /api/v1/logs/{logs_id} HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"body": {
"created": "2025-07-20T01:38:50.701Z",
"updated": "2025-07-20T01:38:50.701Z",
"uri": "text"
},
"metadata": {
"step_run_id": "123e4567-e89b-12d3-a456-426614174000",
"pipeline_run_id": "123e4567-e89b-12d3-a456-426614174000",
"artifact_store_id": "123e4567-e89b-12d3-a456-426614174000"
},
"resources": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"id": "123e4567-e89b-12d3-a456-426614174000",
"permission_denied": false
}
Last updated
Was this helpful?