Apis related to Validation.
Interu API (v2_28)
- Mock serverhttps://developer.interu.io/_mock/reference/api/organisations/{orgId}/processes/{processId}
- UAThttps://api.uat.interu.io/organisations/{orgId}/processes/{processId}
- 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}' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-H 'contentType: application/json' \
-d '{
"processId": "string",
"type": "/organisations/{orgId}/process-types/{processTypeId}",
"location": "/organisations/{orgId}/locations/{locationId}",
"state": "INPUT_OUTPUT",
"firstInputDate": "2019-08-24T14:15:22Z",
"lastOutputDate": "2019-08-24T14:15:22Z"
}'Response
application/json
{ "processId": "string", "type": "/organisations/{orgId}/process-types/{processTypeId}", "location": "/organisations/{orgId}/locations/{locationId}", "state": "INPUT_OUTPUT", "firstInputDate": "2019-08-24T14:15:22Z", "lastOutputDate": "2019-08-24T14:15:22Z", "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}
- UAThttps://api.uat.interu.io/organisations/{orgId}/processes/{processId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://developer.interu.io/_mock/reference/api/organisations/{orgId}/processes/{processId}' \
-H 'X-API-Key: YOUR_API_KEY_HERE'- Mock serverhttps://developer.interu.io/_mock/reference/api/organisations/{orgId}/processes/{processId}/inputs
- UAThttps://api.uat.interu.io/organisations/{orgId}/processes/{processId}/inputs
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://developer.interu.io/_mock/reference/api/organisations/{orgId}/processes/{processId}/inputs' \
-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}",
"selectedQuantity": 0
}
],
"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" }