Apis related to Validation.
- Retrieve Connection List
Interu API (v2_28)
This is the public organisation URI. Once organisation is on the system as well and are connected then this will be populated. Before that happens an organisation can record for themselves but later have them linked if a given organisation then signs up.
If this connection is actually part of your group of companies then this should point to your organisation URI.
- Mock serverhttps://developer.interu.io/_mock/reference/api/organisations/{orgId}/connections
- UAThttps://api.uat.interu.io/organisations/{orgId}/connections
- 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}/connections' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-H 'contentType: application/json' \
-d '{
"name": "string",
"publicUri": "string",
"parentUri": "string",
"website": "string",
"email": "string",
"address": {
"street": "string",
"region": "string",
"zipCode": "string",
"country": "AF"
},
"id": "string"
}'The request has succeeded and will either return the newly created resource or where appropriate a record that reflects the success of the action.
This is the public organisation URI. Once organisation is on the system as well and are connected then this will be populated. Before that happens an organisation can record for themselves but later have them linked if a given organisation then signs up.
If this connection is actually part of your group of companies then this should point to your organisation URI.
{ "name": "string", "publicUri": "string", "parentUri": "string", "website": "string", "email": "string", "address": { "street": "string", "region": "string", "zipCode": "string", "country": "AF" }, "connectStatus": "CONNECTED", "connectStatusUpdatedTime": "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}/connections
- UAThttps://api.uat.interu.io/organisations/{orgId}/connections
- 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}/connections?name=string&country=string&parentUri=string&publicUri=string&hasPublicUri=true&recordState=ACTIVE&connectStatus=CONNECTED&size=20&page=0' \
-H 'X-API-Key: YOUR_API_KEY_HERE'The request has succeeded.
This is the public organisation URI. Once organisation is on the system as well and are connected then this will be populated. Before that happens an organisation can record for themselves but later have them linked if a given organisation then signs up.
If this connection is actually part of your group of companies then this should point to your organisation URI.
The time and date when the connection status was updated.
{ "content": [ { … } ], "page": { "size": 0, "page": 0, "totalElements": 0, "totalPages": 0 } }
- Mock serverhttps://developer.interu.io/_mock/reference/api/organisations/{orgId}/connections/{connectionId}
- UAThttps://api.uat.interu.io/organisations/{orgId}/connections/{connectionId}
- 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}/connections/{connectionId}' \
-H 'X-API-Key: YOUR_API_KEY_HERE'The request has succeeded.
This is the public organisation URI. Once organisation is on the system as well and are connected then this will be populated. Before that happens an organisation can record for themselves but later have them linked if a given organisation then signs up.
If this connection is actually part of your group of companies then this should point to your organisation URI.
{ "name": "string", "publicUri": "string", "parentUri": "string", "website": "string", "email": "string", "address": { "street": "string", "region": "string", "zipCode": "string", "country": "AF" }, "connectStatus": "CONNECTED", "connectStatusUpdatedTime": "2019-08-24T14:15:22Z", "id": "string", "createdBy": "string", "createdTime": "2019-08-24T14:15:22Z", "updatedBy": "string", "updatedTime": "2019-08-24T14:15:22Z" }