Becoming a Document Consumer
Attention, the integration as a Document Consumer is currently in pilot phase: Only integrations with the agreement by the NSSO can go live in the production environment. Integrations can take place in the acceptance environment in order to create the necessary tools to retrieve messages from the e-Box. Please note that the user interface offered by the NSSO remains the main and official way of retrieving messages.
Message consultation happens via a HTTP GET through all the methods that start with /ebox
defined in the e-Box RESTful API.
This specification is available in the .yaml
format.
So a Document Consumer can not only consult his messages but also reference data.
The /publishMessage
method is available only for Document Sender and Document Provider.
Getting an Oauth Token for consultation
The oauth introspect example shows how an Oauth token can be retrieved.
You have to request your AccessToken to the Authorization Server.
The GetAccessTokenV4.getAccessToken()
method is the one responsible of getting the token.
OAuth Authorization Server URL (ACC) | https://services-acpt.socialsecurity.be/REST/oauth/v5/token |
Audience (ACC) | https://services-acpt.socialsecurity.be/REST/oauth/v5/token |
OAuth Authorization Server URL (PRD) | https://services.socialsecurity.be/REST/oauth/v5/token |
Audience (PRD) | https://services.socialsecurity.be/REST/oauth/v5/token |
Getting a token requires having cleared the OAuth part of the onboarding. If it is not done yet, see the Document Consumer onboarding process.
You will get the scopes:
scope:document:management:consult:ws-eboxrestentreprise:summaryownebox
to get the summary of your e-Box;scope:document:management:consult:ws-eboxrestentreprise:messagesfull
to get and perform authorized actions on all messages in your e-Box;scope:document:management:consult:ws-eboxrestentreprise:referencedata
to retrieve the details of the messageTypes, senderOrganizations, and senderApplications.scope:documentmanagement:ebox:enterprise:federation-rest:registry
to get the list of Document Providers
Endpoints
Once you have got your token, you can find the list of Document Providers to call in the result of a GET request to the Document Provider Registry.
You need the scope scope:documentmanagement:ebox:enterprise:federation-rest:registry
in order to consult this web service.
The API is in the specifications page
Environment | URL Document Provider Registry |
---|---|
Acceptance | https://services-acpt.socialsecurity.be/REST/ebox/enterprise/federation/documentProviderRegistry/v1/messageRegistries |
Production | https://services.socialsecurity.be/REST/ebox/enterprise/federation/documentProviderRegistry/v1/messageRegistries |
Among them, you can find our Document Provider:
Environment | Endpoint e-Box enterprise |
---|---|
Acceptance | https://services-acpt.socialsecurity.be/REST/ebox/enterprise/messageRegistry/v2/ |
Production | https://services.socialsecurity.be/REST/ebox/enterprise/messageRegistry/v2/ |
Implementation choices
- The counters you get in the summary of your e-Box (that you can get with a GET on /ebox resource) take also into account the message set to not visible.
- If you request to get a reference data, the lists messageTypeIds, senderOrganizationIds and senderApplicationIds in response will be empty.