Adds a new identity to the LINK database. Returns the resulting LINK identity, linkId, domains, and optional events generated by the operation.
Verato Organization API (2026.1.2)
The Verato Organization API provides comprehensive identity management capabilities for organizations within the Verato LINK platform. This API enables you to:
- Ingest and manage organization identities: Add, update, and delete organization records with rich demographic and contact information.
- Search and query: Find organizations using demographic data, native IDs, or LINK IDs (Verato's golden identifier).
- Lifecycle management: Soft-delete and restore organization records while preserving data history.
- Merge and link operations: Consolidate duplicate organizations, manage master data relationships, and maintain data lineage.
- Relationship management: Define and query relationships between organizations (parent-child, affiliations, etc.).
- Notifications: Track and audit identity changes and events across your organization data.
All operations follow a standard request/response envelope pattern with audit tracking, error handling, and optional response format customization.
- Mock serverhttps://developer.verato.com/_mock/apis/organization.openapi/postIdentity
- Primary API server (example)https://api.example.com/provider-link-ws/svc/postIdentity
- Relative server path (on-prem / internal routing)https://developer.verato.com/provider-link-ws/svc/postIdentity
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.verato.com/_mock/apis/organization.openapi/postIdentity \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"auditId": "string",
"auditLogMap": {
"property1": "string",
"property2": "string"
},
"content": {
"identity": {
"organizationNames": [
{
"legalBusinessName": "string",
"otherOrgName": "string",
"tradingName": "string",
"parentOrgName": "string"
}
],
"addresses": [
{
"addressName": "string",
"addressType": "string",
"line1": "string",
"line2": "string",
"city": "string",
"district": "string",
"state": "string",
"postalCode": "string",
"country": "string",
"latitude": "string",
"longitude": "string",
"validFrom": "2019-08-24",
"validTo": "2019-08-24"
}
],
"contactInformation": [
{
"address": {
"line1": "123 Main St",
"city": "Springfield",
"state": "VA",
"postalCode": "22150"
},
"phoneList": [
{
"number": "5551234567",
"type": "WORK",
"bestTimeToContact": {
"day": "MON",
"startTime": "09:00",
"endTime": "17:00",
"allDay": false
}
}
],
"bestTimeToContact": {
"day": "MON",
"startTime": "09:00",
"endTime": "17:00",
"allDay": false
}
}
],
"phoneNumbers": [
{
"number": "5551234567",
"type": "WORK",
"validFrom": "2024-01-01",
"validTo": "2024-12-31",
"bestTimeToContact": {
"day": "MON",
"startTime": "09:00",
"endTime": "17:00",
"allDay": false
}
}
],
"faxNumbers": [
{
"number": "string",
"type": "string",
"validFrom": "2019-08-24",
"validTo": "2019-08-24"
}
],
"emails": [
{
"email": "string",
"type": "string",
"validFrom": "2019-08-24",
"validTo": "2019-08-24"
}
],
"alternateIdentifiers": [
{
"description": "string",
"type": "string",
"value": "string",
"status": true,
"issuer": "string",
"issueDate": "2019-08-24",
"startDate": "2019-08-24",
"endDate": "2019-08-24"
}
],
"externalUniqueIdentifier": [
{
"issuer": "string",
"value": "string",
"status": "string",
"startDate": "2019-08-24",
"endDate": "2019-08-24"
}
],
"authorizedOfficials": [
{
"title": "string",
"prefix": "string",
"first": "string",
"middle": "string",
"last": "string",
"suffix": "string",
"credential": "string",
"phoneNumber": "string"
}
],
"employerIdentificationNumber": [
{
"value": "string",
"status": true,
"issuer": "string",
"issueDate": "2019-08-24",
"validFrom": "2019-08-24",
"validTo": "2019-08-24"
}
],
"naicsClassifications": [
{
"sector": "string",
"subSector": "string",
"industryGroup": "string",
"industry": "string",
"nationalIndustry": "string"
}
],
"sicClassifications": [
{
"code": "string"
}
],
"qualifications": [
{
"type": "string",
"qualification": "string",
"status": "string",
"issuer": "string",
"issueDate": "2019-08-24",
"validFrom": "2019-08-24",
"validTo": "2019-08-24"
}
],
"types": [
{
"type": "string",
"subType": "string"
}
],
"contactOther": [
{
"system": "string",
"type": "string",
"value": "string",
"validFrom": "2019-08-24",
"validTo": "2019-08-24"
}
],
"product": [
{
"name": "string",
"code": "string",
"type": "string",
"category": "string",
"price": "string",
"status": "string",
"description": "string",
"launchDate": "2019-08-24",
"market": "string",
"lineOfBusiness": "string",
"serviceLines": [
{
"serviceLine": "string",
"subServiceLine": "string"
}
]
}
],
"numberOfEmployees": [
{
"numberOfEmployees": "string"
}
],
"foundedDate": [
{
"foundedDate": "2019-08-24"
}
],
"annualRevenue": [
{
"annualRevenue": "string",
"year": "string"
}
],
"legalStatus": [
{
"type": "string",
"source": "string",
"effectiveDate": "2019-08-24",
"verificationDate": "2019-08-24",
"jurisdiction": "string",
"registrationCountry": "string"
}
]
},
"responseIdentityFormatNames": [
"string"
]
},
"trackingId": "string"
}'{ "auditId": "string", "success": true, "unparsedJson": "string", "warnings": [ "string" ], "retryableError": true, "message": "string", "content": { "identityGroupedBySource": [ … ], "customerSources": [ … ], "linkIdentity": { … }, "linkId": "string", "identity": { … }, "domains": [ … ], "customizedIdentities": { … }, "events": [ … ], "incomingIdentity": { … } }, "errors": [ "string" ], "trackingId": "string" }
The web service request containing the source to delete.
Deletes all information associated with the provided source.
- Mock serverhttps://developer.verato.com/_mock/apis/organization.openapi/deleteSourceIdentity
- Primary API server (example)https://api.example.com/provider-link-ws/svc/deleteSourceIdentity
- Relative server path (on-prem / internal routing)https://developer.verato.com/provider-link-ws/svc/deleteSourceIdentity
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.verato.com/_mock/apis/organization.openapi/deleteSourceIdentity \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"auditId": "string",
"auditLogMap": {
"property1": "string",
"property2": "string"
},
"content": {
"source": {
"date": "string",
"name": "string",
"id": "string"
}
},
"trackingId": "string"
}'{ "auditId": "string", "success": true, "unparsedJson": "string", "warnings": [ "string" ], "retryableError": true, "message": "string", "content": { "linkIdsModified": [ … ], "linkIdsDeleted": [ … ] }, "errors": [ "string" ], "trackingId": "string" }
- Mock serverhttps://developer.verato.com/_mock/apis/organization.openapi/demographicsSearch
- Primary API server (example)https://api.example.com/provider-link-ws/svc/demographicsSearch
- Relative server path (on-prem / internal routing)https://developer.verato.com/provider-link-ws/svc/demographicsSearch
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.verato.com/_mock/apis/organization.openapi/demographicsSearch \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"auditId": "AUDIT-123",
"auditLogMap": {
"channel": "PORTAL"
},
"content": {
"identity": {
"organizationNames": [
{
"legalBusinessName": "ACME Health"
}
],
"contactInformation": [
{
"address": {
"line1": "123 Main St",
"city": "Springfield",
"state": "VA",
"postalCode": "22150"
},
"phoneList": [
{
"number": "5551234567",
"type": "WORK",
"bestTimeToContact": {
"day": "MON",
"startTime": "09:00",
"endTime": "17:00",
"allDay": false
}
}
],
"bestTimeToContact": {
"day": "MON",
"startTime": "09:00",
"endTime": "17:00",
"allDay": false
}
}
]
},
"matchScoreThreshold": 0.85,
"maxSearchResults": 10
},
"trackingId": "TRACK-123"
}'{ "auditId": "string", "success": true, "unparsedJson": "string", "warnings": [ "string" ], "retryableError": true, "message": "string", "content": { "searchResults": [ … ] }, "errors": [ "string" ], "trackingId": "string" }
- Mock serverhttps://developer.verato.com/_mock/apis/organization.openapi/demographicsQuery
- Primary API server (example)https://api.example.com/provider-link-ws/svc/demographicsQuery
- Relative server path (on-prem / internal routing)https://developer.verato.com/provider-link-ws/svc/demographicsQuery
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.verato.com/_mock/apis/organization.openapi/demographicsQuery \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"auditId": "string",
"auditLogMap": {
"property1": "string",
"property2": "string"
},
"content": {
"identity": {
"organizationNames": [
{
"legalBusinessName": "string",
"otherOrgName": "string",
"tradingName": "string",
"parentOrgName": "string"
}
],
"addresses": [
{
"addressName": "string",
"addressType": "string",
"line1": "string",
"line2": "string",
"city": "string",
"district": "string",
"state": "string",
"postalCode": "string",
"country": "string",
"latitude": "string",
"longitude": "string",
"validFrom": "2019-08-24",
"validTo": "2019-08-24"
}
],
"contactInformation": [
{
"address": {
"line1": "123 Main St",
"city": "Springfield",
"state": "VA",
"postalCode": "22150"
},
"phoneList": [
{
"number": "5551234567",
"type": "WORK",
"bestTimeToContact": {
"day": "MON",
"startTime": "09:00",
"endTime": "17:00",
"allDay": false
}
}
],
"bestTimeToContact": {
"day": "MON",
"startTime": "09:00",
"endTime": "17:00",
"allDay": false
}
}
],
"phoneNumbers": [
{
"number": "5551234567",
"type": "WORK",
"validFrom": "2024-01-01",
"validTo": "2024-12-31",
"bestTimeToContact": {
"day": "MON",
"startTime": "09:00",
"endTime": "17:00",
"allDay": false
}
}
],
"faxNumbers": [
{
"number": "string",
"type": "string",
"validFrom": "2019-08-24",
"validTo": "2019-08-24"
}
],
"emails": [
{
"email": "string",
"type": "string",
"validFrom": "2019-08-24",
"validTo": "2019-08-24"
}
],
"alternateIdentifiers": [
{
"description": "string",
"type": "string",
"value": "string",
"status": true,
"issuer": "string",
"issueDate": "2019-08-24",
"startDate": "2019-08-24",
"endDate": "2019-08-24"
}
],
"externalUniqueIdentifier": [
{
"issuer": "string",
"value": "string",
"status": "string",
"startDate": "2019-08-24",
"endDate": "2019-08-24"
}
],
"authorizedOfficials": [
{
"title": "string",
"prefix": "string",
"first": "string",
"middle": "string",
"last": "string",
"suffix": "string",
"credential": "string",
"phoneNumber": "string"
}
],
"employerIdentificationNumber": [
{
"value": "string",
"status": true,
"issuer": "string",
"issueDate": "2019-08-24",
"validFrom": "2019-08-24",
"validTo": "2019-08-24"
}
],
"naicsClassifications": [
{
"sector": "string",
"subSector": "string",
"industryGroup": "string",
"industry": "string",
"nationalIndustry": "string"
}
],
"sicClassifications": [
{
"code": "string"
}
],
"qualifications": [
{
"type": "string",
"qualification": "string",
"status": "string",
"issuer": "string",
"issueDate": "2019-08-24",
"validFrom": "2019-08-24",
"validTo": "2019-08-24"
}
],
"types": [
{
"type": "string",
"subType": "string"
}
],
"contactOther": [
{
"system": "string",
"type": "string",
"value": "string",
"validFrom": "2019-08-24",
"validTo": "2019-08-24"
}
],
"product": [
{
"name": "string",
"code": "string",
"type": "string",
"category": "string",
"price": "string",
"status": "string",
"description": "string",
"launchDate": "2019-08-24",
"market": "string",
"lineOfBusiness": "string",
"serviceLines": [
{
"serviceLine": "string",
"subServiceLine": "string"
}
]
}
],
"numberOfEmployees": [
{
"numberOfEmployees": "string"
}
],
"foundedDate": [
{
"foundedDate": "2019-08-24"
}
],
"annualRevenue": [
{
"annualRevenue": "string",
"year": "string"
}
],
"legalStatus": [
{
"type": "string",
"source": "string",
"effectiveDate": "2019-08-24",
"verificationDate": "2019-08-24",
"jurisdiction": "string",
"registrationCountry": "string"
}
]
},
"responseIdentityFormatNames": [
"string"
]
},
"trackingId": "string"
}'{ "auditId": "string", "success": true, "unparsedJson": "string", "warnings": [ "string" ], "retryableError": true, "message": "string", "content": { "identityGroupedBySource": [ … ], "customerSources": [ … ], "linkId": "string", "identity": { … }, "domains": [ … ], "customizedIdentities": { … } }, "errors": [ "string" ], "trackingId": "string" }
- Mock serverhttps://developer.verato.com/_mock/apis/organization.openapi/nativeIdQuery
- Primary API server (example)https://api.example.com/provider-link-ws/svc/nativeIdQuery
- Relative server path (on-prem / internal routing)https://developer.verato.com/provider-link-ws/svc/nativeIdQuery
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.verato.com/_mock/apis/organization.openapi/nativeIdQuery \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"auditId": "string",
"auditLogMap": {
"property1": "string",
"property2": "string"
},
"content": {
"source": {
"date": "string",
"name": "string",
"id": "string"
},
"responseIdentityFormatNames": [
"string"
]
},
"trackingId": "string"
}'{ "auditId": "string", "success": true, "unparsedJson": "string", "warnings": [ "string" ], "retryableError": true, "message": "string", "content": { "identityGroupedBySource": [ … ], "customerSources": [ … ], "linkId": "string", "identity": { … }, "domains": [ … ], "customizedIdentities": { … } }, "errors": [ "string" ], "trackingId": "string" }
- Mock serverhttps://developer.verato.com/_mock/apis/organization.openapi/identityIdQuery
- Primary API server (example)https://api.example.com/provider-link-ws/svc/identityIdQuery
- Relative server path (on-prem / internal routing)https://developer.verato.com/provider-link-ws/svc/identityIdQuery
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.verato.com/_mock/apis/organization.openapi/identityIdQuery \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"auditId": "string",
"auditLogMap": {
"property1": "string",
"property2": "string"
},
"content": {
"linkId": "string",
"responseIdentityFormatNames": [
"string"
]
},
"trackingId": "string"
}'{ "auditId": "string", "success": true, "unparsedJson": "string", "warnings": [ "string" ], "retryableError": true, "message": "string", "content": { "identityGroupedBySource": [ … ], "customerSources": [ … ], "linkId": "string", "identity": { … }, "domains": [ … ], "requestedLinkId": "string", "customizedIdentities": { … } }, "errors": [ "string" ], "trackingId": "string" }
- Mock serverhttps://developer.verato.com/_mock/apis/organization.openapi/softDeleteSource
- Primary API server (example)https://api.example.com/provider-link-ws/svc/softDeleteSource
- Relative server path (on-prem / internal routing)https://developer.verato.com/provider-link-ws/svc/softDeleteSource
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.verato.com/_mock/apis/organization.openapi/softDeleteSource \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"auditId": "string",
"auditLogMap": {
"property1": "string",
"property2": "string"
},
"content": {
"sourceToSoftDelete": {
"date": "string",
"name": "string",
"id": "string"
}
},
"trackingId": "string"
}'{ "auditId": "string", "success": true, "unparsedJson": "string", "warnings": [ "string" ], "retryableError": true, "message": "string", "content": { "linkIdsSoftDeleted": [ … ], "linkIdsModified": [ … ] }, "errors": [ "string" ], "trackingId": "string" }
- Mock serverhttps://developer.verato.com/_mock/apis/organization.openapi/restoreSource
- Primary API server (example)https://api.example.com/provider-link-ws/svc/restoreSource
- Relative server path (on-prem / internal routing)https://developer.verato.com/provider-link-ws/svc/restoreSource
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.verato.com/_mock/apis/organization.openapi/restoreSource \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"auditId": "string",
"auditLogMap": {
"property1": "string",
"property2": "string"
},
"content": {},
"trackingId": "string"
}'{ "auditId": "string", "success": true, "unparsedJson": "string", "warnings": [ "string" ], "retryableError": true, "message": "string", "content": { "linkIdsModified": [ … ], "linkIdCreated": "string" }, "errors": [ "string" ], "trackingId": "string" }
The merge identities request.
Request to merge (retire) one source identity into another, creating a single surviving identity.
- Mock serverhttps://developer.verato.com/_mock/apis/organization.openapi/mergeIdentities
- Primary API server (example)https://api.example.com/provider-link-ws/svc/mergeIdentities
- Relative server path (on-prem / internal routing)https://developer.verato.com/provider-link-ws/svc/mergeIdentities
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.verato.com/_mock/apis/organization.openapi/mergeIdentities \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"auditId": "string",
"auditLogMap": {
"property1": "string",
"property2": "string"
},
"content": {
"toSurviveSource": {
"date": "string",
"name": "string",
"id": "string"
},
"toRetireSource": {
"date": "string",
"name": "string",
"id": "string"
}
},
"trackingId": "string"
}'{ "auditId": "string", "success": true, "unparsedJson": "string", "warnings": [ "string" ], "retryableError": true, "message": "string", "content": { "linkId": "string", "toSurviveSource": { … } }, "errors": [ "string" ], "trackingId": "string" }
The unmerge identities request.
Request to unmerge data from the retired section of an identity into a new identity.
- Mock serverhttps://developer.verato.com/_mock/apis/organization.openapi/unmergeIdentities
- Primary API server (example)https://api.example.com/provider-link-ws/svc/unmergeIdentities
- Relative server path (on-prem / internal routing)https://developer.verato.com/provider-link-ws/svc/unmergeIdentities
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.verato.com/_mock/apis/organization.openapi/unmergeIdentities \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"auditId": "string",
"auditLogMap": {
"property1": "string",
"property2": "string"
},
"content": {
"unmergeFromSource": {
"date": "string",
"name": "string",
"id": "string"
},
"unmergeSource": {
"date": "string",
"name": "string",
"id": "string"
}
},
"trackingId": "string"
}'{ "auditId": "string", "success": true, "unparsedJson": "string", "warnings": [ "string" ], "retryableError": true, "message": "string", "content": { "unmergedSource": { … }, "unmergedFromSource": { … }, "unmergedId": "string", "unmergedFromId": "string" }, "errors": [ "string" ], "trackingId": "string" }
The link identities request.
Represents a request to link data from one identity into another, usually across sources.
- Mock serverhttps://developer.verato.com/_mock/apis/organization.openapi/linkIdentities
- Primary API server (example)https://api.example.com/provider-link-ws/svc/linkIdentities
- Relative server path (on-prem / internal routing)https://developer.verato.com/provider-link-ws/svc/linkIdentities
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.verato.com/_mock/apis/organization.openapi/linkIdentities \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"auditId": "string",
"auditLogMap": {
"property1": "string",
"property2": "string"
},
"content": {
"linkToSource": {
"date": "string",
"name": "string",
"id": "string"
},
"source": {
"date": "string",
"name": "string",
"id": "string"
}
},
"trackingId": "string"
}'{ "auditId": "string", "success": true, "unparsedJson": "string", "warnings": [ "string" ], "retryableError": true, "message": "string", "content": { "linkId": "string", "linkToSource": { … } }, "errors": [ "string" ], "trackingId": "string" }
The unlink identities request.
Request to unlink data from one identity to create a separate identity.
- Mock serverhttps://developer.verato.com/_mock/apis/organization.openapi/unlinkIdentities
- Primary API server (example)https://api.example.com/provider-link-ws/svc/unlinkIdentities
- Relative server path (on-prem / internal routing)https://developer.verato.com/provider-link-ws/svc/unlinkIdentities
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.verato.com/_mock/apis/organization.openapi/unlinkIdentities \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"auditId": "string",
"auditLogMap": {
"property1": "string",
"property2": "string"
},
"content": {
"unlinkFromSource": {
"date": "string",
"name": "string",
"id": "string"
},
"source": {
"date": "string",
"name": "string",
"id": "string"
}
},
"trackingId": "string"
}'{ "auditId": "string", "success": true, "unparsedJson": "string", "warnings": [ "string" ], "retryableError": true, "message": "string", "content": { "unlinkedId": "string", "unlinkedSource": { … }, "unlinkedFromId": "string", "unlinkedFromSource": { … } }, "errors": [ "string" ], "trackingId": "string" }
- Mock serverhttps://developer.verato.com/_mock/apis/organization.openapi/deleteRelationshipService
- Primary API server (example)https://api.example.com/provider-link-ws/svc/deleteRelationshipService
- Relative server path (on-prem / internal routing)https://developer.verato.com/provider-link-ws/svc/deleteRelationshipService
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.verato.com/_mock/apis/organization.openapi/deleteRelationshipService \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"auditId": "string",
"auditLogMap": {
"property1": "string",
"property2": "string"
},
"content": {
"id": "string"
},
"trackingId": "string"
}'{ "auditId": "string", "success": true, "unparsedJson": "string", "warnings": [ "string" ], "retryableError": true, "message": "string", "content": { "id": "string" }, "errors": [ "string" ], "trackingId": "string" }
- Mock serverhttps://developer.verato.com/_mock/apis/organization.openapi/addRelationshipService
- Primary API server (example)https://api.example.com/provider-link-ws/svc/addRelationshipService
- Relative server path (on-prem / internal routing)https://developer.verato.com/provider-link-ws/svc/addRelationshipService
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.verato.com/_mock/apis/organization.openapi/addRelationshipService \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"auditId": "string",
"auditLogMap": {
"property1": "string",
"property2": "string"
},
"content": {
"relationship": {
"id": "string",
"relationshipVerb": "string",
"inverseRelationshipVerb": "string",
"subjectVeratoId": "string",
"objectVeratoId": "string",
"domain": "string",
"trustFactor": "string",
"details": {
"property1": null,
"property2": null
},
"status": "string",
"startDate": "2019-08-24T14:15:22Z",
"endDate": "2019-08-24T14:15:22Z"
}
},
"trackingId": "string"
}'{ "auditId": "string", "success": true, "unparsedJson": "string", "warnings": [ "string" ], "retryableError": true, "message": "string", "content": { "relationship": { … } }, "errors": [ "string" ], "trackingId": "string" }
- Mock serverhttps://developer.verato.com/_mock/apis/organization.openapi/searchRelationshipsService
- Primary API server (example)https://api.example.com/provider-link-ws/svc/searchRelationshipsService
- Relative server path (on-prem / internal routing)https://developer.verato.com/provider-link-ws/svc/searchRelationshipsService
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.verato.com/_mock/apis/organization.openapi/searchRelationshipsService \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"auditId": "string",
"auditLogMap": {
"property1": "string",
"property2": "string"
},
"content": {
"relationship": {
"id": "string",
"relationshipVerb": "string",
"inverseRelationshipVerb": "string",
"subjectVeratoId": "string",
"objectVeratoId": "string",
"domain": "string",
"trustFactor": "string",
"details": {
"property1": null,
"property2": null
},
"status": "string",
"startDate": "2019-08-24T14:15:22Z",
"endDate": "2019-08-24T14:15:22Z"
}
},
"trackingId": "string"
}'{ "auditId": "string", "success": true, "unparsedJson": "string", "warnings": [ "string" ], "retryableError": true, "message": "string", "content": { "relationship": { … } }, "errors": [ "string" ], "trackingId": "string" }
- Mock serverhttps://developer.verato.com/_mock/apis/organization.openapi/searchNotifications
- Primary API server (example)https://api.example.com/provider-link-ws/svc/searchNotifications
- Relative server path (on-prem / internal routing)https://developer.verato.com/provider-link-ws/svc/searchNotifications
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.verato.com/_mock/apis/organization.openapi/searchNotifications \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"auditId": "string",
"auditLogMap": {
"property1": "string",
"property2": "string"
},
"content": {
"pageNumber": 0,
"pageSize": 0,
"startDate": "2019-08-24T14:15:22Z",
"endDate": "2019-08-24T14:15:22Z"
},
"trackingId": "string"
}'{ "auditId": "string", "success": true, "unparsedJson": "string", "warnings": [ "string" ], "retryableError": true, "message": "string", "content": { "customerId": "string", "hasNext": true, "notifications": [ … ], "totalElements": 0 }, "errors": [ "string" ], "trackingId": "string" }