Skip to content
This repository has been archived by the owner on Jul 10, 2020. It is now read-only.

Latest commit

 

History

History
149 lines (121 loc) · 8.01 KB

File metadata and controls

149 lines (121 loc) · 8.01 KB

Becoming a Document Sender

Publication happen through the /publishMessage method of the e-Box RESTful API The method uses a multipart HTTP POST to send up to 6 documents attached to a an e-Box Message. The API fully support end to end streaming.

The authentication has to be done via a OAuth2 token request. See the Document Sender onboarding process to configure your enterprise as a new OAuth client.

Minimal publication example

The following is pretty much the simplest publication request that can be made. It is comprised of the following HTTP parts

  1. messageToPublish: This part contains the meta information of the message. Example:
messageToPublish: {
    "recipient": {
      "eboxType": "enterprise",
      "eboxIdValue": "0123456789"
    },
    "subject": {
      "fr": "Message de test"
    },
    "senderApplicationId": "db2b.SPFETCS-FODWASO.fgov.be",
    "messageTypeId": "SpfFodSocialElections",
    "senderOrganizationId": "0123456789",
    "attachments": [
        {
          "httpPartName": "upfile1",
          "mainContent": true,
          "attachmentSigned": false
        }
    ],
    "bodyMainContent": false,
    "replyAuthorized": false
}
  1. upfile1: This part MUST contain the binary and basic meta information of the document. It is a standard HTTP binary file upload part which needs to specify the following information:
    • data stream: the raw data of the content
    • filename: the file name of the document
    • Content-Type: the MIME type of the document
Content-Disposition: form-data; name="upfile1
"; filename="MyTestDocument.pdf"
Content-Type: application/pdf

(data)

Note: The upfile1 part and the extra meta information of the document are linked together through "httpPartName": "upfile1" in the messageToPublish part,

Response

Provided that the request is correct one can expect a 201 status code to be issued with our without an additional information code in the JSON response body.

NO_DIGITAL_USER response code

This code allows the Document Sender to know that the publication he just made was to a recipient that never visited his e-Box.

This is the preferred method for a Sender to determine if the User uses his e-Box or not. An alternative to this is to use the e-Box Federation WS but this requires to integrate with another web service and does not fit the "e-Box First" philosophy we are trying to push.

For the attention of

If the publication is for the attention of a particular person, a ForTheAttentionOf object has to be added in the messageToPublish. Example:

        "forTheAttentionOf": {
          "type": "person",
          "id": "84022711080",
          "name": "John Doe"
        }

The type is used to determine if the attention is for a person or a group of person. For the moment, only "person" is suported. The id property is the National Register Number.

Minimal publication example for a citizen

If the recipient is a citizen, the example below show a minimal publication.

messageToPublish: {
    "recipient": {
      "eboxType": "citizen",
      "eboxIdValue": "71022722580"
    },
    "subject": {
      "fr": "Message de test"
    },
    "senderApplicationId": "employment:job-attest:werkkaart",
    "messageTypeId": "WK1-ACTIVA",
    "senderOrganizationId": "0123456789",
    "attachments": [
        {
          "httpPartName": "upfile1",
          "mainContent": true,
          "attachmentSigned": false
        }
    ],
    "bodyMainContent": false,
    "replyAuthorized": false
}

The difference is in the recipient object. The eboxType becomes citizen and the eboxIdValue is the recipient SSIN. Also you cannot let a messageTypeId and a senderApplicationId that are used only for enterprise-to-enterprise publication.

Getting an Oauth Token for publication

The oauth introspect example shows how an Oauth token can be retrieved. You have to request your AccessToken to the Authorization Server. The GetAccessTokenV3.getAccessToken() method is the one responsible of getting the token.

OAuth Authorization Server URL (ACC)https://services-acpt.socialsecurity.be/REST/oauth/v3/token
Audience (ACC)https://oauthacc.socialsecurity.be
OAuth Authorization Server URL (PRD)https://services.socialsecurity.be/REST/oauth/v3/token
Audience (PRD)https://oauth.socialsecurity.be

Getting a token requires having cleared the OAuth part of the onboarding. If it is not done yet, see the Document Sender onboarding process.

Endpoints

Once you have got your token, you can call a method using one of these endpoints:

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

End to end Streaming Considerations

The order of HTTP parts is arbitrary, each part being linked to its associated meta-data by the httpPartName property of the publication payload. This allows for end to end streaming on the Document Sender side. See the Publication Profile Documentation for more information.

Examples with Postman

If you use Postman, you might be interested in a Postman publication examples collection. After importing that collection,

  • Paste your token in the Authorization tab in the menu to edit the collection,
  • Replace the upfile1 to upfile6 in the body of the requests with a file in your desktop,
  • Replace senderOrganizationId, senderApplicationId and messageTypeId with what you are authorized to use,
  • Set the variable EndpointEnterpriseMessageRegistryV2 with the corresponding endpoint as value, terminating with a slash.

Our implementation choices

There are some restrictions in our implementation of the service:

  • Following a legal advice, we do not support publication with several languages. Only one among fr, nl and de has to be selected in a publication request for the subject, attachment title, body content and business data values.
  • We do not support the attachmentTitle property in the AttachmentToPublish object. The attachment title will be the file name of the uploaded file.
  • /linkEboxMessage feature is not implemented but the broadcast feature still available by asking the procedure to [email protected].
  • We do not support dynamic expiration date. That is to say, in the API about the messageToPublish object, the expirationDate property is ignored. The expiration date will be calculated from the current date plus the validity period defined for the message type. You can see the validityPeriod by doing a GET on <endpoint>/referenceData/messageTypes/<messageType-ID>
  • The business data put in a messageToPublish can only be those defined for the message type created during the Onboarding process.
  • The originalMessageId in the messageToPublish object is only supported in the case of a reply. The value to put is the ID of the message to reply.
  • We do not accept null values. If a property has to be null, like "registeredMail": null, the equivalent we accept is to not put that property.
  • We do not support payment data.