APILog
All api log endpoints
Authorizations
PRIVATE-TOKENstringRequired
Header parameters
RANGED-DATAstringRequired
Example header: RANGED-DATA:start=0,results=25
Responses
200
OK
application/json
403
Invalid credentials
500
Internal Server Error
application/json
get/v3/account/apiLog
GET /v3/account/apiLog HTTP/1.1
Host: api.i3d.net
PRIVATE-TOKEN: YOUR_API_KEY
RANGED-DATA: text
Accept: */*
[
{
"request": {
"url": "text",
"method": "text",
"header": {},
"queryParameter": "text",
"ipAddress": "text",
"requestTimestamp": 1,
"body": {}
},
"response": {
"responseTime": 1,
"code": 1,
"body": {}
}
}
]Authorizations
PRIVATE-TOKENstringRequired
Path parameters
requestTypestringRequired
The Http method that was used in the call. Possible values are {GET, POST, PUT and DELETE}
Header parameters
RANGED-DATAstringRequired
Example header: RANGED-DATA:start=0,results=25
Responses
200
OK
application/json
403
Invalid credentials
404
Invalid requestType
500
Internal Server Error
application/json
get/v3/account/apiLog/{requestType}
GET /v3/account/apiLog/{requestType} HTTP/1.1
Host: api.i3d.net
PRIVATE-TOKEN: YOUR_API_KEY
RANGED-DATA: text
Accept: */*
[
{
"request": {
"url": "text",
"method": "text",
"header": {},
"queryParameter": "text",
"ipAddress": "text",
"requestTimestamp": 1,
"body": {}
},
"response": {
"responseTime": 1,
"code": 1,
"body": {}
}
}
]Last updated
Was this helpful?