TAG LINE
TAG LINE
SMALL TITLE

Json API / Log

(API Version v9)


What can you do with JsonApiLog?


Properties

Property Details
identity
READ-ONLY
"identity": "Hello World"
Type: String
This is the unique numeric identifier for the JsonApiLog
userIdentity
"userIdentity": 14
Type: Number
ownerTenantIdentity
"ownerTenantIdentity": 20
Type: Number
user
"user": "Hello World"
Type: String
requestTrackingIdentity
"requestTrackingIdentity": "Hello World"
Type: String
utc
"utc": "2021-04-26T15:25:27.587Z"
Type: Date
Date and time values are specified in the ISO 8601 format.
requestUri
"requestUri": "Hello World"
Type: String
requestVerb
"requestVerb": "Hello World"
Type: String
requestHeaders
"requestHeaders": "Hello World"
Type: String
requestLength
"requestLength": "Hello World"
Type: String
request
"request": "Hello World"
Type: String
responseStatusCode
"responseStatusCode": "Hello World"
Type: String
responseReasonCode
"responseReasonCode": "Hello World"
Type: String
responseHeaders
"responseHeaders": "Hello World"
Type: String
responseLength
"responseLength": "Hello World"
Type: String
response
"response": "Hello World"
Type: String
ipAddressFrom
"ipAddressFrom": "Hello World"
Type: String
ipAddressTo
"ipAddressTo": "Hello World"
Type: String
duration
"duration": "Hello World"
Type: String
idempotencyKey
"idempotencyKey": "Hello World"
Type: String


End Points

GETJsonApi/Log/ByRequestTracking/{id}
Retrieve an instance of the JsonApiLog object by its ID.
{id}Unique identifier for the JsonApiLog object.
Retrieve an instance of the JsonApiLog object by its ID.
GET JsonApi/Log/ByRequestTracking/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "userIdentity": 27,
        "ownerTenantIdentity": 1,
        "user": "Sample Text Data",
        "requestTrackingIdentity": "Sample Text Data",
        "utc": "2021-04-26T15:25:27.587Z",
        "requestUri": "Sample Text Data",
        "requestVerb": "Sample Text Data",
        "requestHeaders": "Sample Text Data",
        "requestLength": "Sample Text Data",
        "request": "Sample Text Data",
        "responseStatusCode": "Sample Text Data",
        "responseReasonCode": "Sample Text Data",
        "responseHeaders": "Sample Text Data",
        "responseLength": "Sample Text Data",
        "response": "Sample Text Data",
        "ipAddressFrom": "Sample Text Data",
        "ipAddressTo": "Sample Text Data",
        "duration": "Sample Text Data",
        "idempotencyKey": "Sample Text Data"
    }
}