Apis related to Validation.
Interu API (v2_28)
- Mock serverhttps://developer.interu.io/_mock/reference/api/organisations/{orgId}/processes/{processId}/outputs
- UAThttps://api.uat.interu.io/organisations/{orgId}/processes/{processId}/outputs
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.interu.io/_mock/reference/api/organisations/{orgId}/processes/{processId}/outputs?startDate=2019-08-24T14%3A15%3A22Z&endDate=2019-08-24T14%3A15%3A22Z&size=20&page=0' \
-H 'X-API-Key: YOUR_API_KEY_HERE'Response
application/json
{ "content": [ { … } ], "page": { "size": 0, "page": 0, "totalElements": 0, "totalPages": 0 } }
- Mock serverhttps://developer.interu.io/_mock/reference/api/organisations/{orgId}/processes/{processId}/outputs/{outputId}
- UAThttps://api.uat.interu.io/organisations/{orgId}/processes/{processId}/outputs/{outputId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.interu.io/_mock/reference/api/organisations/{orgId}/processes/{processId}/outputs/{outputId}' \
-H 'X-API-Key: YOUR_API_KEY_HERE'Response
application/json
{ "date": { "type": "EXACT", "on": "2019-08-24T14:15:22Z", "start": "2019-08-24T14:15:22Z", "end": "2019-08-24T14:15:22Z" }, "items": [ { … } ], "note": "string", "id": "string", "createdBy": "string", "createdTime": "2019-08-24T14:15:22Z", "updatedBy": "string", "updatedTime": "2019-08-24T14:15:22Z" }
- Mock serverhttps://developer.interu.io/_mock/reference/api/organisations/{orgId}/processes/{processId}/outputs/{outputId}
- UAThttps://api.uat.interu.io/organisations/{orgId}/processes/{processId}/outputs/{outputId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://developer.interu.io/_mock/reference/api/organisations/{orgId}/processes/{processId}/outputs/{outputId}' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-H 'contentType: application/json' \
-d '{
"date": {
"type": "EXACT",
"on": "2019-08-24T14:15:22Z",
"start": "2019-08-24T14:15:22Z",
"end": "2019-08-24T14:15:22Z"
},
"items": [
{
"item": "/organisations/{orgId}/items/{itemId}"
}
],
"note": "string"
}'Response
application/json
{ "date": { "type": "EXACT", "on": "2019-08-24T14:15:22Z", "start": "2019-08-24T14:15:22Z", "end": "2019-08-24T14:15:22Z" }, "items": [ { … } ], "note": "string", "id": "string", "createdBy": "string", "createdTime": "2019-08-24T14:15:22Z", "updatedBy": "string", "updatedTime": "2019-08-24T14:15:22Z" }