Apis related to Validation.
Interu API (v2_28)
- Mock serverhttps://developer.interu.io/_mock/reference/api/organisations/{orgId}/processes
- UAThttps://api.uat.interu.io/organisations/{orgId}/processes
- 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' \
-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",
"id": "string"
}'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
- UAThttps://api.uat.interu.io/organisations/{orgId}/processes
- 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?firstInputDate=2019-08-24T14%3A15%3A22Z&lastOutputDate=2019-08-24T14%3A15%3A22Z&recordState=ACTIVE&processId=string&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}
- UAThttps://api.uat.interu.io/organisations/{orgId}/processes/{processId}
- 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}' \
-H 'X-API-Key: YOUR_API_KEY_HERE'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" }