Integrations with Dialogporten and Arbeidsflate
How to get started with the integrations towards Dialogporten and Arbeidsflate
Transmissions
A transmission can be created through the Altinn 3 Correspondence API to group multiple related instances within the same dialog.
How to get started
When a correspondence is created the entity will be given a dialogId which resides in the external reference of the correspondence. Future instances which are related to the dialog can be grouped through transmissions. This is done by referring to the dialogId in the external reference.
{
"correspondence":{
...,
"externalReferences":[
{
"referenceValue": string,
"referenceType" ReferenceType
}
]
}
}
The referenceValue of the transmission must be set to the dialogId of the dialog you’re referring to. Furthermore, the referenceType must be set to DialogportenDialogId to indicate that the new correspondence is part of a pre-existing dialog.
Transmission successfully created
Once a transmission has successfully been created, the external references of the newly created correspondence will consist of a reference to the dialog in which the correspondence is related as well as a reference to a transmissionId which has been set.
The response should be of the following format:
{
"correspondence":{
...,
"externalReferences":[
{
"referenceValue": dialogId,
"referenceType": DialogportenDialogId
},
{
"referenceValue": transmissionId,
"referenceType": DialogportenTransmissionId
}
]
}
}