POST/v1/reportPOST /v1/report
Code samples
cURL
# You can also use wget
curl -X POST /v1/report \
-H 'Content-Type: application/json-patch+json' \
-H 'Accept: text/plain' \
-H 'x-api-key: API_KEY'
POST /v1/report
Body parameter
{
"userKey": "string",
"machineId": "string",
"clientId": "string",
"clientName": "string",
"report": {
"name": "string",
"version": "string",
"date": {
"seconds": 0,
"nanos": 0
},
"encrypted": true,
"content": [
0
]
}
}Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| body | body | Licensing.SendReportRequest | false | none |
Example responses
200 Response
{"success":true,"reportUid":"string"}{
"success": true,
"reportUid": "string"
}Responses
| Status | Meaning | Description | Schema |
|---|---|---|---|
| 200 | OK | OK | Licensing.SendReportResponse |
Warning: To perform this operation, you must be authenticated by means of one of the following methods: Bearer & ApiKey
Last updated on