4. Discovery Service registration
Before another party can interact with you, they will first need to find your endpoints. The discovery service in the Nuts node helps you. You do this once per organization, per use case.
Via Nuts admin
to do
Via API:
POST /internal/discovery/v1/<servicedefinition-id>/<subject-id>
{
"registrationParameters": {
"abc": "xyz",
"someparameter": "somevalue"
}
}
Replace <servicedefinition-id> with the servicedefinition-id and replace <subject-id> with the subject-id of the organization.
For each use case a
discovery service definitionis specified that specifies the servicedefinition-id and the registrationParameters.
No Comments