Apis related to Validation.
Interu API (v2_28)
- Mock serverhttps://developer.interu.io/_mock/reference/api/organisations/{orgId}/attachments
- UAThttps://api.uat.interu.io/organisations/{orgId}/attachments
- 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}/attachments' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-H 'contentType: application/json' \
-d '{
"targetUri": "/organisations/{orgId}/...path-to-record",
"attachmentUri": "/organisations/{orgId}/...path-to-record"
}'Response
application/json
{ "targetUri": "/organisations/{orgId}/...path-to-record", "attachmentUri": "/organisations/{orgId}/...path-to-record", "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}/attachments
- UAThttps://api.uat.interu.io/organisations/{orgId}/attachments
- 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}/attachments?attachmentType=DOCUMENT&targetType=CERTIFICATE&targetUri=http%3A%2F%2Fexample.com&attachmentUri=http%3A%2F%2Fexample.com' \
-H 'X-API-Key: YOUR_API_KEY_HERE'Response
application/json
[ { "targetUri": "/organisations/{orgId}/...path-to-record", "attachmentUri": "/organisations/{orgId}/...path-to-record", "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}/attachments/{attachmentId}
- UAThttps://api.uat.interu.io/organisations/{orgId}/attachments/{attachmentId}
- 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}/attachments/{attachmentId}' \
-H 'X-API-Key: YOUR_API_KEY_HERE'Response
application/json
{ "targetUri": "/organisations/{orgId}/...path-to-record", "attachmentUri": "/organisations/{orgId}/...path-to-record", "id": "string", "createdBy": "string", "createdTime": "2019-08-24T14:15:22Z", "updatedBy": "string", "updatedTime": "2019-08-24T14:15:22Z" }