Request Logs
Get a Log
Platform API
API Reference
- Connect Sessions
- Accounts
- Request Logs
- Connectors
- Proxy
Request Logs
Get a Log
GET
/
requests
/
logs
/
{id}
curl --request GET \
--url https://api.stackone.com/requests/logs/{id} \
--header 'Authorization: Basic <encoded-value>'
{
"data": {
"request_id": "adbf752f-6457-4ddd-89b3-98ae2252b83b",
"event_datetime": "2021-01-01T00:00:00Z",
"start_time": "2021-01-01T00:00:00Z",
"end_time": "2021-01-01T00:00:00Z",
"account_id": "45355976281015164504",
"project_id": "dev-project-68574",
"http_method": "get",
"path": "/unified/hris/employees",
"url": "https://api.stackone.com/unified/hris/employees?raw=false",
"status": 200,
"duration": 356,
"success": true,
"provider": "planday",
"service": "hris",
"resource": "employees",
"child_resource": "time-off",
"sub_resource": "documents",
"action": "download",
"is_worker": false,
"source_type": "DASHBOARD",
"source_value": "ACCOUNT_TESTER",
"source_id": "1234567890",
"request": {
"id": "adbf752f-6457-4ddd-89b3-98ae2252b83b",
"method": "get",
"headers": {
"content-type": "application/json",
"authorization": "Bearer token"
},
"url": {
"url": "https://example.com/api/v1/resource",
"hostname": "example.com",
"path": "/api/v1/resource",
"query_params": {
"page": 1,
"limit": 10
}
},
"body": "<string>"
},
"response": {
"status_code": 200,
"headers": {
"content-type": "application/json",
"authorization": "Bearer token"
},
"body": "<string>",
"custom_mapping_errors": [
{
"id": "adbf752f-6457-4ddd-89b3-98ae2252b83b",
"message": "Invalid value",
"targetField": "first_name"
}
],
"provider_errors": [
{
"status": 400,
"url": "https://api.provider.com/v1/resource",
"raw": {
"message": "Invalid input parameters"
},
"headers": {
"content-type": "application/json",
"x-request-id": "5678c28b211dace4e0a0f9171e6b88c5"
}
}
]
},
"step_requests": "Account Tester"
}
}
Authorizations
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Path Parameters
Query Parameters
The include parameter allows you to include additional data in the response.
Available options:
step_logs
, advanced_logs
Example:
"step_logs"
Response
200
application/json
The log was retrieved.
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.stackone.com/requests/logs/{id} \
--header 'Authorization: Basic <encoded-value>'
{
"data": {
"request_id": "adbf752f-6457-4ddd-89b3-98ae2252b83b",
"event_datetime": "2021-01-01T00:00:00Z",
"start_time": "2021-01-01T00:00:00Z",
"end_time": "2021-01-01T00:00:00Z",
"account_id": "45355976281015164504",
"project_id": "dev-project-68574",
"http_method": "get",
"path": "/unified/hris/employees",
"url": "https://api.stackone.com/unified/hris/employees?raw=false",
"status": 200,
"duration": 356,
"success": true,
"provider": "planday",
"service": "hris",
"resource": "employees",
"child_resource": "time-off",
"sub_resource": "documents",
"action": "download",
"is_worker": false,
"source_type": "DASHBOARD",
"source_value": "ACCOUNT_TESTER",
"source_id": "1234567890",
"request": {
"id": "adbf752f-6457-4ddd-89b3-98ae2252b83b",
"method": "get",
"headers": {
"content-type": "application/json",
"authorization": "Bearer token"
},
"url": {
"url": "https://example.com/api/v1/resource",
"hostname": "example.com",
"path": "/api/v1/resource",
"query_params": {
"page": 1,
"limit": 10
}
},
"body": "<string>"
},
"response": {
"status_code": 200,
"headers": {
"content-type": "application/json",
"authorization": "Bearer token"
},
"body": "<string>",
"custom_mapping_errors": [
{
"id": "adbf752f-6457-4ddd-89b3-98ae2252b83b",
"message": "Invalid value",
"targetField": "first_name"
}
],
"provider_errors": [
{
"status": 400,
"url": "https://api.provider.com/v1/resource",
"raw": {
"message": "Invalid input parameters"
},
"headers": {
"content-type": "application/json",
"x-request-id": "5678c28b211dace4e0a0f9171e6b88c5"
}
}
]
},
"step_requests": "Account Tester"
}
}