@digdir/dialogporten-schema 1.119.0-d98a3d6 → 1.119.1-e12a482
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema.verified.graphql +35 -1
- package/src/index.js +34 -0
- package/swagger.verified.json +180 -86
package/package.json
CHANGED
package/schema.verified.graphql
CHANGED
|
@@ -8,6 +8,7 @@ type Queries @authorize(policy: "enduser") {
|
|
|
8
8
|
dialogLookup(instanceRef: String!): DialogLookupPayload!
|
|
9
9
|
dialogById(dialogId: UUID!): DialogByIdPayload!
|
|
10
10
|
searchDialogs(input: SearchDialogInput!): SearchDialogsPayload!
|
|
11
|
+
labelAssignmentLog(dialogId: UUID!): LabelAssignmentLogPayload!
|
|
11
12
|
limits: Limits!
|
|
12
13
|
parties: [AuthorizedParty!]!
|
|
13
14
|
serviceResources(parties: [String!], includeUnauthorized: Boolean! = false): ServiceResourceMetadata!
|
|
@@ -391,6 +392,35 @@ type GuiAction {
|
|
|
391
392
|
prompt: [Localization!]
|
|
392
393
|
}
|
|
393
394
|
|
|
395
|
+
type LabelAssignmentLog {
|
|
396
|
+
"The date and time when the label assignment log entry was created."
|
|
397
|
+
createdAt: DateTime!
|
|
398
|
+
"The name of the system label that was changed."
|
|
399
|
+
name: String!
|
|
400
|
+
"The action that was performed on the label, e.g. 'set' or 'removed'."
|
|
401
|
+
action: String!
|
|
402
|
+
"The actor that performed the label assignment."
|
|
403
|
+
performedBy: Actor!
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
type LabelAssignmentLogDeleted implements LabelAssignmentLogError {
|
|
407
|
+
message: String!
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
type LabelAssignmentLogForbidden implements LabelAssignmentLogError {
|
|
411
|
+
message: String!
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
type LabelAssignmentLogNotFound implements LabelAssignmentLogError {
|
|
415
|
+
message: String!
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
type LabelAssignmentLogPayload {
|
|
419
|
+
"The immutable list of label assignment log entries for the dialog's end-user context."
|
|
420
|
+
labelAssignmentLog: [LabelAssignmentLog!]!
|
|
421
|
+
errors: [LabelAssignmentLogError!]!
|
|
422
|
+
}
|
|
423
|
+
|
|
394
424
|
type Limits {
|
|
395
425
|
endUserSearch: EndUserSearchLimits!
|
|
396
426
|
serviceOwnerSearch: ServiceOwnerSearchLimits!
|
|
@@ -671,6 +701,10 @@ interface DialogLookupError {
|
|
|
671
701
|
message: String!
|
|
672
702
|
}
|
|
673
703
|
|
|
704
|
+
interface LabelAssignmentLogError {
|
|
705
|
+
message: String!
|
|
706
|
+
}
|
|
707
|
+
|
|
674
708
|
interface SearchDialogError {
|
|
675
709
|
message: String!
|
|
676
710
|
}
|
|
@@ -910,4 +944,4 @@ directive @authorize(
|
|
|
910
944
|
roles: [String!]
|
|
911
945
|
"Defines when the authorize directive shall be applied. By default the authorize directive is applied before the resolver is executed."
|
|
912
946
|
apply: ApplyPolicy! = BEFORE_RESOLVER
|
|
913
|
-
) repeatable on OBJECT | FIELD_DEFINITION
|
|
947
|
+
) repeatable on OBJECT | FIELD_DEFINITION
|
package/src/index.js
CHANGED
|
@@ -8,6 +8,7 @@ type Queries @authorize(policy: "enduser") {
|
|
|
8
8
|
dialogLookup(instanceRef: String!): DialogLookupPayload!
|
|
9
9
|
dialogById(dialogId: UUID!): DialogByIdPayload!
|
|
10
10
|
searchDialogs(input: SearchDialogInput!): SearchDialogsPayload!
|
|
11
|
+
labelAssignmentLog(dialogId: UUID!): LabelAssignmentLogPayload!
|
|
11
12
|
limits: Limits!
|
|
12
13
|
parties: [AuthorizedParty!]!
|
|
13
14
|
serviceResources(parties: [String!], includeUnauthorized: Boolean! = false): ServiceResourceMetadata!
|
|
@@ -391,6 +392,35 @@ type GuiAction {
|
|
|
391
392
|
prompt: [Localization!]
|
|
392
393
|
}
|
|
393
394
|
|
|
395
|
+
type LabelAssignmentLog {
|
|
396
|
+
"The date and time when the label assignment log entry was created."
|
|
397
|
+
createdAt: DateTime!
|
|
398
|
+
"The name of the system label that was changed."
|
|
399
|
+
name: String!
|
|
400
|
+
"The action that was performed on the label, e.g. 'set' or 'removed'."
|
|
401
|
+
action: String!
|
|
402
|
+
"The actor that performed the label assignment."
|
|
403
|
+
performedBy: Actor!
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
type LabelAssignmentLogDeleted implements LabelAssignmentLogError {
|
|
407
|
+
message: String!
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
type LabelAssignmentLogForbidden implements LabelAssignmentLogError {
|
|
411
|
+
message: String!
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
type LabelAssignmentLogNotFound implements LabelAssignmentLogError {
|
|
415
|
+
message: String!
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
type LabelAssignmentLogPayload {
|
|
419
|
+
"The immutable list of label assignment log entries for the dialog's end-user context."
|
|
420
|
+
labelAssignmentLog: [LabelAssignmentLog!]!
|
|
421
|
+
errors: [LabelAssignmentLogError!]!
|
|
422
|
+
}
|
|
423
|
+
|
|
394
424
|
type Limits {
|
|
395
425
|
endUserSearch: EndUserSearchLimits!
|
|
396
426
|
serviceOwnerSearch: ServiceOwnerSearchLimits!
|
|
@@ -671,6 +701,10 @@ interface DialogLookupError {
|
|
|
671
701
|
message: String!
|
|
672
702
|
}
|
|
673
703
|
|
|
704
|
+
interface LabelAssignmentLogError {
|
|
705
|
+
message: String!
|
|
706
|
+
}
|
|
707
|
+
|
|
674
708
|
interface SearchDialogError {
|
|
675
709
|
message: String!
|
|
676
710
|
}
|
package/swagger.verified.json
CHANGED
|
@@ -7004,9 +7004,22 @@
|
|
|
7004
7004
|
}
|
|
7005
7005
|
},
|
|
7006
7006
|
"securitySchemes": {
|
|
7007
|
-
"
|
|
7007
|
+
"idporten": {
|
|
7008
|
+
"description": "Browser login using ID-Porten (OIDC).\n- You can obtain a token from ID-Porten using the Authorization Code \u002B PKCE flow.\n- Well known: https://test.idporten.no/.well-known/openid-configuration\n- This token can be only be used with the Enduser endpoints.\n\nClaims we look for:\n- pid (identifies the end user)\n\nThere is only one scope available for this security scheme:\n- digdir:dialogporten",
|
|
7009
|
+
"flows": {
|
|
7010
|
+
"authorizationCode": {
|
|
7011
|
+
"authorizationUrl": "https://login.test.idporten.no/authorize",
|
|
7012
|
+
"scopes": {
|
|
7013
|
+
"digdir:dialogporten": "Access to dialogporten"
|
|
7014
|
+
},
|
|
7015
|
+
"tokenUrl": "https://test.idporten.no/token"
|
|
7016
|
+
}
|
|
7017
|
+
},
|
|
7018
|
+
"type": "oauth2"
|
|
7019
|
+
},
|
|
7020
|
+
"maskinporten": {
|
|
7008
7021
|
"bearerFormat": "JWT",
|
|
7009
|
-
"description": "
|
|
7022
|
+
"description": "Machine login using Maskinporten.\n\n- This is a OAuth2 scheme that uses the JWT Bearer Grant (RFC 7523).\n We can\u0027t express this flow in the OpenAPI specification. \n That\u0027s why we use the more generic \u0022Http\u0022 type for this scheme instead.\n Please refer to the Maskinporten documentation for how to implement this flow.\n- Well known: https://test.maskinporten.no/.well-known/oauth-authorization-server/\n- This token can be used for all secured endpoints (enduser and serviceowner).\n- To use this token with the Enduser API\u0027s, you have to register a \u0022system\u0022 and \u0022system user\u0022.\n Please refer to the Dialogporten documentation for how to register systems and system users.\n- Required scopes are listed per endpoint as Security Requirement Objects.\n\nClaims we look for:\n- authorization_details (contains the system user ID)\n- consumer (identifies the organization/service owner)\n- email (identifies Email-users in the case the amr claim is Selfregistered-email)\n\nAvailable scopes for this security scheme are:\n- digdir:dialogporten (system user only)\n- digdir:dialogporten.serviceprovider\n- digdir:dialogporten.serviceprovider.search\n- digdir:dialogporten.serviceprovider.changetransmissions\n- altinn:system/notifications.condition.check",
|
|
7010
7023
|
"scheme": "bearer",
|
|
7011
7024
|
"type": "http"
|
|
7012
7025
|
}
|
|
@@ -7149,7 +7162,7 @@
|
|
|
7149
7162
|
"description": "Validation error occurred. See problem details for a list of errors."
|
|
7150
7163
|
},
|
|
7151
7164
|
"401": {
|
|
7152
|
-
"description": "Missing or invalid authentication token.
|
|
7165
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from ID-porten or Maskinporten with the scope(s) \u0022digdir:dialogporten\u0022."
|
|
7153
7166
|
},
|
|
7154
7167
|
"403": {
|
|
7155
7168
|
"description": "Authenticated end user is not authorized for the supplied instance reference."
|
|
@@ -7186,7 +7199,12 @@
|
|
|
7186
7199
|
},
|
|
7187
7200
|
"security": [
|
|
7188
7201
|
{
|
|
7189
|
-
"
|
|
7202
|
+
"maskinporten": [
|
|
7203
|
+
"digdir:dialogporten"
|
|
7204
|
+
]
|
|
7205
|
+
},
|
|
7206
|
+
{
|
|
7207
|
+
"idporten": [
|
|
7190
7208
|
"digdir:dialogporten"
|
|
7191
7209
|
]
|
|
7192
7210
|
}
|
|
@@ -7473,7 +7491,7 @@
|
|
|
7473
7491
|
"description": "Successfully returned the dialog list."
|
|
7474
7492
|
},
|
|
7475
7493
|
"401": {
|
|
7476
|
-
"description": "Missing or invalid authentication token.
|
|
7494
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from ID-porten or Maskinporten with the scope(s) \u0022digdir:dialogporten\u0022."
|
|
7477
7495
|
},
|
|
7478
7496
|
"403": {
|
|
7479
7497
|
"description": "Forbidden"
|
|
@@ -7510,7 +7528,12 @@
|
|
|
7510
7528
|
},
|
|
7511
7529
|
"security": [
|
|
7512
7530
|
{
|
|
7513
|
-
"
|
|
7531
|
+
"maskinporten": [
|
|
7532
|
+
"digdir:dialogporten"
|
|
7533
|
+
]
|
|
7534
|
+
},
|
|
7535
|
+
{
|
|
7536
|
+
"idporten": [
|
|
7514
7537
|
"digdir:dialogporten"
|
|
7515
7538
|
]
|
|
7516
7539
|
}
|
|
@@ -7560,7 +7583,7 @@
|
|
|
7560
7583
|
"description": "Successfully returned the dialog aggregate."
|
|
7561
7584
|
},
|
|
7562
7585
|
"401": {
|
|
7563
|
-
"description": "Missing or invalid authentication token.
|
|
7586
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from ID-porten or Maskinporten with the scope(s) \u0022digdir:dialogporten\u0022."
|
|
7564
7587
|
},
|
|
7565
7588
|
"403": {
|
|
7566
7589
|
"description": "Unauthorized to get the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
|
|
@@ -7597,7 +7620,12 @@
|
|
|
7597
7620
|
},
|
|
7598
7621
|
"security": [
|
|
7599
7622
|
{
|
|
7600
|
-
"
|
|
7623
|
+
"maskinporten": [
|
|
7624
|
+
"digdir:dialogporten"
|
|
7625
|
+
]
|
|
7626
|
+
},
|
|
7627
|
+
{
|
|
7628
|
+
"idporten": [
|
|
7601
7629
|
"digdir:dialogporten"
|
|
7602
7630
|
]
|
|
7603
7631
|
}
|
|
@@ -7650,7 +7678,7 @@
|
|
|
7650
7678
|
"description": "Successfully returned the dialog activity list."
|
|
7651
7679
|
},
|
|
7652
7680
|
"401": {
|
|
7653
|
-
"description": "Missing or invalid authentication token.
|
|
7681
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from ID-porten or Maskinporten with the scope(s) \u0022digdir:dialogporten\u0022."
|
|
7654
7682
|
},
|
|
7655
7683
|
"403": {
|
|
7656
7684
|
"description": "Unauthorized to get the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
|
|
@@ -7687,7 +7715,12 @@
|
|
|
7687
7715
|
},
|
|
7688
7716
|
"security": [
|
|
7689
7717
|
{
|
|
7690
|
-
"
|
|
7718
|
+
"maskinporten": [
|
|
7719
|
+
"digdir:dialogporten"
|
|
7720
|
+
]
|
|
7721
|
+
},
|
|
7722
|
+
{
|
|
7723
|
+
"idporten": [
|
|
7691
7724
|
"digdir:dialogporten"
|
|
7692
7725
|
]
|
|
7693
7726
|
}
|
|
@@ -7746,7 +7779,7 @@
|
|
|
7746
7779
|
"description": "Successfully returned the dialog activity."
|
|
7747
7780
|
},
|
|
7748
7781
|
"401": {
|
|
7749
|
-
"description": "Missing or invalid authentication token.
|
|
7782
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from ID-porten or Maskinporten with the scope(s) \u0022digdir:dialogporten\u0022."
|
|
7750
7783
|
},
|
|
7751
7784
|
"403": {
|
|
7752
7785
|
"description": "Unauthorized to get child entity for the given dialog (dialog not owned by authenticated organization or has additional scope requirements defined in service identifiers policy)."
|
|
@@ -7783,7 +7816,12 @@
|
|
|
7783
7816
|
},
|
|
7784
7817
|
"security": [
|
|
7785
7818
|
{
|
|
7786
|
-
"
|
|
7819
|
+
"maskinporten": [
|
|
7820
|
+
"digdir:dialogporten"
|
|
7821
|
+
]
|
|
7822
|
+
},
|
|
7823
|
+
{
|
|
7824
|
+
"idporten": [
|
|
7787
7825
|
"digdir:dialogporten"
|
|
7788
7826
|
]
|
|
7789
7827
|
}
|
|
@@ -7824,7 +7862,7 @@
|
|
|
7824
7862
|
"description": "Successfully returned the dialog label assignment log list."
|
|
7825
7863
|
},
|
|
7826
7864
|
"401": {
|
|
7827
|
-
"description": "Missing or invalid authentication token.
|
|
7865
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from ID-porten or Maskinporten with the scope(s) \u0022digdir:dialogporten\u0022."
|
|
7828
7866
|
},
|
|
7829
7867
|
"403": {
|
|
7830
7868
|
"description": "Unauthorized to get the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
|
|
@@ -7864,7 +7902,12 @@
|
|
|
7864
7902
|
},
|
|
7865
7903
|
"security": [
|
|
7866
7904
|
{
|
|
7867
|
-
"
|
|
7905
|
+
"maskinporten": [
|
|
7906
|
+
"digdir:dialogporten"
|
|
7907
|
+
]
|
|
7908
|
+
},
|
|
7909
|
+
{
|
|
7910
|
+
"idporten": [
|
|
7868
7911
|
"digdir:dialogporten"
|
|
7869
7912
|
]
|
|
7870
7913
|
}
|
|
@@ -7936,7 +7979,7 @@
|
|
|
7936
7979
|
"description": "Validation error occurred. See problem details for a list of errors."
|
|
7937
7980
|
},
|
|
7938
7981
|
"401": {
|
|
7939
|
-
"description": "Missing or invalid authentication token.
|
|
7982
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from ID-porten or Maskinporten with the scope(s) \u0022digdir:dialogporten\u0022."
|
|
7940
7983
|
},
|
|
7941
7984
|
"403": {
|
|
7942
7985
|
"description": "Unauthorized to update the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
|
|
@@ -7999,7 +8042,12 @@
|
|
|
7999
8042
|
},
|
|
8000
8043
|
"security": [
|
|
8001
8044
|
{
|
|
8002
|
-
"
|
|
8045
|
+
"maskinporten": [
|
|
8046
|
+
"digdir:dialogporten"
|
|
8047
|
+
]
|
|
8048
|
+
},
|
|
8049
|
+
{
|
|
8050
|
+
"idporten": [
|
|
8003
8051
|
"digdir:dialogporten"
|
|
8004
8052
|
]
|
|
8005
8053
|
}
|
|
@@ -8040,7 +8088,7 @@
|
|
|
8040
8088
|
"description": "Successfully returned the dialog seen log records."
|
|
8041
8089
|
},
|
|
8042
8090
|
"401": {
|
|
8043
|
-
"description": "Missing or invalid authentication token.
|
|
8091
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from ID-porten or Maskinporten with the scope(s) \u0022digdir:dialogporten\u0022."
|
|
8044
8092
|
},
|
|
8045
8093
|
"403": {
|
|
8046
8094
|
"description": "Forbidden"
|
|
@@ -8077,7 +8125,12 @@
|
|
|
8077
8125
|
},
|
|
8078
8126
|
"security": [
|
|
8079
8127
|
{
|
|
8080
|
-
"
|
|
8128
|
+
"maskinporten": [
|
|
8129
|
+
"digdir:dialogporten"
|
|
8130
|
+
]
|
|
8131
|
+
},
|
|
8132
|
+
{
|
|
8133
|
+
"idporten": [
|
|
8081
8134
|
"digdir:dialogporten"
|
|
8082
8135
|
]
|
|
8083
8136
|
}
|
|
@@ -8124,7 +8177,7 @@
|
|
|
8124
8177
|
"description": "Successfully returned the dialog seen log record."
|
|
8125
8178
|
},
|
|
8126
8179
|
"401": {
|
|
8127
|
-
"description": "Missing or invalid authentication token.
|
|
8180
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from ID-porten or Maskinporten with the scope(s) \u0022digdir:dialogporten\u0022."
|
|
8128
8181
|
},
|
|
8129
8182
|
"403": {
|
|
8130
8183
|
"description": "Forbidden"
|
|
@@ -8161,7 +8214,12 @@
|
|
|
8161
8214
|
},
|
|
8162
8215
|
"security": [
|
|
8163
8216
|
{
|
|
8164
|
-
"
|
|
8217
|
+
"maskinporten": [
|
|
8218
|
+
"digdir:dialogporten"
|
|
8219
|
+
]
|
|
8220
|
+
},
|
|
8221
|
+
{
|
|
8222
|
+
"idporten": [
|
|
8165
8223
|
"digdir:dialogporten"
|
|
8166
8224
|
]
|
|
8167
8225
|
}
|
|
@@ -8214,7 +8272,7 @@
|
|
|
8214
8272
|
"description": "Successfully returned the dialog transmission list."
|
|
8215
8273
|
},
|
|
8216
8274
|
"401": {
|
|
8217
|
-
"description": "Missing or invalid authentication token.
|
|
8275
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from ID-porten or Maskinporten with the scope(s) \u0022digdir:dialogporten\u0022."
|
|
8218
8276
|
},
|
|
8219
8277
|
"403": {
|
|
8220
8278
|
"description": "Unauthorized to get the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
|
|
@@ -8254,7 +8312,12 @@
|
|
|
8254
8312
|
},
|
|
8255
8313
|
"security": [
|
|
8256
8314
|
{
|
|
8257
|
-
"
|
|
8315
|
+
"maskinporten": [
|
|
8316
|
+
"digdir:dialogporten"
|
|
8317
|
+
]
|
|
8318
|
+
},
|
|
8319
|
+
{
|
|
8320
|
+
"idporten": [
|
|
8258
8321
|
"digdir:dialogporten"
|
|
8259
8322
|
]
|
|
8260
8323
|
}
|
|
@@ -8313,7 +8376,7 @@
|
|
|
8313
8376
|
"description": "Successfully returned the dialog transmission."
|
|
8314
8377
|
},
|
|
8315
8378
|
"401": {
|
|
8316
|
-
"description": "Missing or invalid authentication token.
|
|
8379
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from ID-porten or Maskinporten with the scope(s) \u0022digdir:dialogporten\u0022."
|
|
8317
8380
|
},
|
|
8318
8381
|
"403": {
|
|
8319
8382
|
"description": "Unauthorized to get child entity for the given dialog (dialog not owned by authenticated organization or has additional scope requirements defined in service identifiers policy)."
|
|
@@ -8353,7 +8416,12 @@
|
|
|
8353
8416
|
},
|
|
8354
8417
|
"security": [
|
|
8355
8418
|
{
|
|
8356
|
-
"
|
|
8419
|
+
"maskinporten": [
|
|
8420
|
+
"digdir:dialogporten"
|
|
8421
|
+
]
|
|
8422
|
+
},
|
|
8423
|
+
{
|
|
8424
|
+
"idporten": [
|
|
8357
8425
|
"digdir:dialogporten"
|
|
8358
8426
|
]
|
|
8359
8427
|
}
|
|
@@ -8394,7 +8462,7 @@
|
|
|
8394
8462
|
"description": "Validation error occurred. See problem details for a list of errors."
|
|
8395
8463
|
},
|
|
8396
8464
|
"401": {
|
|
8397
|
-
"description": "Missing or invalid authentication token.
|
|
8465
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from ID-porten or Maskinporten with the scope(s) \u0022digdir:dialogporten\u0022."
|
|
8398
8466
|
},
|
|
8399
8467
|
"403": {
|
|
8400
8468
|
"description": "Unauthorized to update the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
|
|
@@ -8454,7 +8522,12 @@
|
|
|
8454
8522
|
},
|
|
8455
8523
|
"security": [
|
|
8456
8524
|
{
|
|
8457
|
-
"
|
|
8525
|
+
"maskinporten": [
|
|
8526
|
+
"digdir:dialogporten"
|
|
8527
|
+
]
|
|
8528
|
+
},
|
|
8529
|
+
{
|
|
8530
|
+
"idporten": [
|
|
8458
8531
|
"digdir:dialogporten"
|
|
8459
8532
|
]
|
|
8460
8533
|
}
|
|
@@ -8481,7 +8554,7 @@
|
|
|
8481
8554
|
"description": "The list of authorized parties for the end user"
|
|
8482
8555
|
},
|
|
8483
8556
|
"401": {
|
|
8484
|
-
"description": "
|
|
8557
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from ID-porten or Maskinporten with the scope(s) \u0022digdir:dialogporten\u0022."
|
|
8485
8558
|
},
|
|
8486
8559
|
"403": {
|
|
8487
8560
|
"description": "Forbidden"
|
|
@@ -8508,7 +8581,12 @@
|
|
|
8508
8581
|
},
|
|
8509
8582
|
"security": [
|
|
8510
8583
|
{
|
|
8511
|
-
"
|
|
8584
|
+
"maskinporten": [
|
|
8585
|
+
"digdir:dialogporten"
|
|
8586
|
+
]
|
|
8587
|
+
},
|
|
8588
|
+
{
|
|
8589
|
+
"idporten": [
|
|
8512
8590
|
"digdir:dialogporten"
|
|
8513
8591
|
]
|
|
8514
8592
|
}
|
|
@@ -8563,7 +8641,7 @@
|
|
|
8563
8641
|
"description": "Authorized service resource metadata."
|
|
8564
8642
|
},
|
|
8565
8643
|
"401": {
|
|
8566
|
-
"description": "
|
|
8644
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from ID-porten or Maskinporten with the scope(s) \u0022digdir:dialogporten\u0022."
|
|
8567
8645
|
},
|
|
8568
8646
|
"403": {
|
|
8569
8647
|
"description": "Forbidden"
|
|
@@ -8590,7 +8668,12 @@
|
|
|
8590
8668
|
},
|
|
8591
8669
|
"security": [
|
|
8592
8670
|
{
|
|
8593
|
-
"
|
|
8671
|
+
"maskinporten": [
|
|
8672
|
+
"digdir:dialogporten"
|
|
8673
|
+
]
|
|
8674
|
+
},
|
|
8675
|
+
{
|
|
8676
|
+
"idporten": [
|
|
8594
8677
|
"digdir:dialogporten"
|
|
8595
8678
|
]
|
|
8596
8679
|
}
|
|
@@ -8745,7 +8828,7 @@
|
|
|
8745
8828
|
"description": "Validation error occurred. See problem details for a list of errors."
|
|
8746
8829
|
},
|
|
8747
8830
|
"401": {
|
|
8748
|
-
"description": "Missing or invalid authentication token.
|
|
8831
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
8749
8832
|
},
|
|
8750
8833
|
"403": {
|
|
8751
8834
|
"description": "Authenticated service owner does not own the resolved dialog."
|
|
@@ -8782,7 +8865,7 @@
|
|
|
8782
8865
|
},
|
|
8783
8866
|
"security": [
|
|
8784
8867
|
{
|
|
8785
|
-
"
|
|
8868
|
+
"maskinporten": [
|
|
8786
8869
|
"digdir:dialogporten.serviceprovider"
|
|
8787
8870
|
]
|
|
8788
8871
|
}
|
|
@@ -9098,7 +9181,7 @@
|
|
|
9098
9181
|
"description": "Successfully returned the dialog list."
|
|
9099
9182
|
},
|
|
9100
9183
|
"401": {
|
|
9101
|
-
"description": "Missing or invalid authentication token.
|
|
9184
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider digdir:dialogporten.serviceprovider.search\u0022."
|
|
9102
9185
|
},
|
|
9103
9186
|
"503": {
|
|
9104
9187
|
"content": {
|
|
@@ -9122,7 +9205,7 @@
|
|
|
9122
9205
|
},
|
|
9123
9206
|
"security": [
|
|
9124
9207
|
{
|
|
9125
|
-
"
|
|
9208
|
+
"maskinporten": [
|
|
9126
9209
|
"digdir:dialogporten.serviceprovider",
|
|
9127
9210
|
"digdir:dialogporten.serviceprovider.search"
|
|
9128
9211
|
]
|
|
@@ -9179,7 +9262,7 @@
|
|
|
9179
9262
|
"description": "Validation error occurred. See problem details for a list of errors."
|
|
9180
9263
|
},
|
|
9181
9264
|
"401": {
|
|
9182
|
-
"description": "Missing or invalid authentication token.
|
|
9265
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
9183
9266
|
},
|
|
9184
9267
|
"403": {
|
|
9185
9268
|
"description": "Unauthorized to create a dialog for the given serviceResource (not owned by authenticated organization or has additional scope requirements defined in policy)."
|
|
@@ -9219,7 +9302,7 @@
|
|
|
9219
9302
|
},
|
|
9220
9303
|
"security": [
|
|
9221
9304
|
{
|
|
9222
|
-
"
|
|
9305
|
+
"maskinporten": [
|
|
9223
9306
|
"digdir:dialogporten.serviceprovider"
|
|
9224
9307
|
]
|
|
9225
9308
|
}
|
|
@@ -9278,7 +9361,7 @@
|
|
|
9278
9361
|
"description": "Validation error occurred. See problem details for a list of errors."
|
|
9279
9362
|
},
|
|
9280
9363
|
"401": {
|
|
9281
|
-
"description": "Missing or invalid authentication token.
|
|
9364
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
9282
9365
|
},
|
|
9283
9366
|
"403": {
|
|
9284
9367
|
"description": "Unauthorized to delete the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
|
|
@@ -9331,7 +9414,7 @@
|
|
|
9331
9414
|
},
|
|
9332
9415
|
"security": [
|
|
9333
9416
|
{
|
|
9334
|
-
"
|
|
9417
|
+
"maskinporten": [
|
|
9335
9418
|
"digdir:dialogporten.serviceprovider"
|
|
9336
9419
|
]
|
|
9337
9420
|
}
|
|
@@ -9376,7 +9459,7 @@
|
|
|
9376
9459
|
"description": "Successfully returned the dialog aggregate."
|
|
9377
9460
|
},
|
|
9378
9461
|
"401": {
|
|
9379
|
-
"description": "Missing or invalid authentication token.
|
|
9462
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
9380
9463
|
},
|
|
9381
9464
|
"403": {
|
|
9382
9465
|
"description": "Unauthorized to get the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
|
|
@@ -9413,7 +9496,7 @@
|
|
|
9413
9496
|
},
|
|
9414
9497
|
"security": [
|
|
9415
9498
|
{
|
|
9416
|
-
"
|
|
9499
|
+
"maskinporten": [
|
|
9417
9500
|
"digdir:dialogporten.serviceprovider"
|
|
9418
9501
|
]
|
|
9419
9502
|
}
|
|
@@ -9573,7 +9656,7 @@
|
|
|
9573
9656
|
},
|
|
9574
9657
|
"security": [
|
|
9575
9658
|
{
|
|
9576
|
-
"
|
|
9659
|
+
"maskinporten": [
|
|
9577
9660
|
"digdir:dialogporten.serviceprovider"
|
|
9578
9661
|
]
|
|
9579
9662
|
}
|
|
@@ -9641,7 +9724,7 @@
|
|
|
9641
9724
|
"description": "Validation error occurred. See problem details for a list of errors."
|
|
9642
9725
|
},
|
|
9643
9726
|
"401": {
|
|
9644
|
-
"description": "Missing or invalid authentication token.
|
|
9727
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
9645
9728
|
},
|
|
9646
9729
|
"403": {
|
|
9647
9730
|
"description": "Unauthorized to update the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
|
|
@@ -9704,7 +9787,7 @@
|
|
|
9704
9787
|
},
|
|
9705
9788
|
"security": [
|
|
9706
9789
|
{
|
|
9707
|
-
"
|
|
9790
|
+
"maskinporten": [
|
|
9708
9791
|
"digdir:dialogporten.serviceprovider"
|
|
9709
9792
|
]
|
|
9710
9793
|
}
|
|
@@ -9763,7 +9846,7 @@
|
|
|
9763
9846
|
"description": "Validation error occurred. See problem details for a list of errors."
|
|
9764
9847
|
},
|
|
9765
9848
|
"401": {
|
|
9766
|
-
"description": "
|
|
9849
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
9767
9850
|
},
|
|
9768
9851
|
"403": {
|
|
9769
9852
|
"description": "Unauthorized to freeze the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
|
|
@@ -9816,7 +9899,7 @@
|
|
|
9816
9899
|
},
|
|
9817
9900
|
"security": [
|
|
9818
9901
|
{
|
|
9819
|
-
"
|
|
9902
|
+
"maskinporten": [
|
|
9820
9903
|
"digdir:dialogporten.serviceprovider"
|
|
9821
9904
|
]
|
|
9822
9905
|
}
|
|
@@ -9856,7 +9939,7 @@
|
|
|
9856
9939
|
"description": "The dialog aggregate was deleted successfully."
|
|
9857
9940
|
},
|
|
9858
9941
|
"401": {
|
|
9859
|
-
"description": "Missing or invalid authentication token.
|
|
9942
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
9860
9943
|
},
|
|
9861
9944
|
"403": {
|
|
9862
9945
|
"description": "Unauthorized to delete the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
|
|
@@ -9906,7 +9989,7 @@
|
|
|
9906
9989
|
},
|
|
9907
9990
|
"security": [
|
|
9908
9991
|
{
|
|
9909
|
-
"
|
|
9992
|
+
"maskinporten": [
|
|
9910
9993
|
"digdir:dialogporten.serviceprovider"
|
|
9911
9994
|
]
|
|
9912
9995
|
}
|
|
@@ -9946,7 +10029,7 @@
|
|
|
9946
10029
|
"description": "The dialog aggregate was restored successfully."
|
|
9947
10030
|
},
|
|
9948
10031
|
"401": {
|
|
9949
|
-
"description": "
|
|
10032
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
9950
10033
|
},
|
|
9951
10034
|
"403": {
|
|
9952
10035
|
"description": "Forbidden"
|
|
@@ -9996,7 +10079,7 @@
|
|
|
9996
10079
|
},
|
|
9997
10080
|
"security": [
|
|
9998
10081
|
{
|
|
9999
|
-
"
|
|
10082
|
+
"maskinporten": [
|
|
10000
10083
|
"digdir:dialogporten.serviceprovider"
|
|
10001
10084
|
]
|
|
10002
10085
|
}
|
|
@@ -10067,7 +10150,7 @@
|
|
|
10067
10150
|
"description": "Successfully returned the notification determination."
|
|
10068
10151
|
},
|
|
10069
10152
|
"401": {
|
|
10070
|
-
"description": "Missing or invalid authentication token.
|
|
10153
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022altinn:system/notifications.condition.check\u0022."
|
|
10071
10154
|
},
|
|
10072
10155
|
"403": {
|
|
10073
10156
|
"description": "Forbidden"
|
|
@@ -10094,8 +10177,8 @@
|
|
|
10094
10177
|
},
|
|
10095
10178
|
"security": [
|
|
10096
10179
|
{
|
|
10097
|
-
"
|
|
10098
|
-
"
|
|
10180
|
+
"maskinporten": [
|
|
10181
|
+
"altinn:system/notifications.condition.check"
|
|
10099
10182
|
]
|
|
10100
10183
|
}
|
|
10101
10184
|
],
|
|
@@ -10135,7 +10218,7 @@
|
|
|
10135
10218
|
"description": "Successfully returned the dialog activity list."
|
|
10136
10219
|
},
|
|
10137
10220
|
"401": {
|
|
10138
|
-
"description": "Missing or invalid authentication token.
|
|
10221
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
10139
10222
|
},
|
|
10140
10223
|
"403": {
|
|
10141
10224
|
"description": "Unauthorized to get the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
|
|
@@ -10172,7 +10255,7 @@
|
|
|
10172
10255
|
},
|
|
10173
10256
|
"security": [
|
|
10174
10257
|
{
|
|
10175
|
-
"
|
|
10258
|
+
"maskinporten": [
|
|
10176
10259
|
"digdir:dialogporten.serviceprovider"
|
|
10177
10260
|
]
|
|
10178
10261
|
}
|
|
@@ -10250,7 +10333,7 @@
|
|
|
10250
10333
|
"description": "Validation error occurred. See problem details for a list of errors."
|
|
10251
10334
|
},
|
|
10252
10335
|
"401": {
|
|
10253
|
-
"description": "Missing or invalid authentication token.
|
|
10336
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
10254
10337
|
},
|
|
10255
10338
|
"403": {
|
|
10256
10339
|
"description": "Unauthorized to create child entity for the given dialog (dialog not owned by authenticated organization or has additional scope requirements defined in service identifiers policy)."
|
|
@@ -10313,7 +10396,7 @@
|
|
|
10313
10396
|
},
|
|
10314
10397
|
"security": [
|
|
10315
10398
|
{
|
|
10316
|
-
"
|
|
10399
|
+
"maskinporten": [
|
|
10317
10400
|
"digdir:dialogporten.serviceprovider"
|
|
10318
10401
|
]
|
|
10319
10402
|
}
|
|
@@ -10360,7 +10443,7 @@
|
|
|
10360
10443
|
"description": "Successfully returned the dialog activity."
|
|
10361
10444
|
},
|
|
10362
10445
|
"401": {
|
|
10363
|
-
"description": "Missing or invalid authentication token.
|
|
10446
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
10364
10447
|
},
|
|
10365
10448
|
"403": {
|
|
10366
10449
|
"description": "Unauthorized to get child entity for the given dialog (dialog not owned by authenticated organization or has additional scope requirements defined in service identifiers policy)."
|
|
@@ -10400,7 +10483,7 @@
|
|
|
10400
10483
|
},
|
|
10401
10484
|
"security": [
|
|
10402
10485
|
{
|
|
10403
|
-
"
|
|
10486
|
+
"maskinporten": [
|
|
10404
10487
|
"digdir:dialogporten.serviceprovider"
|
|
10405
10488
|
]
|
|
10406
10489
|
}
|
|
@@ -10438,10 +10521,19 @@
|
|
|
10438
10521
|
}
|
|
10439
10522
|
}
|
|
10440
10523
|
},
|
|
10441
|
-
"description": "Successfully retrieved the service owner labels."
|
|
10524
|
+
"description": "Successfully retrieved the service owner labels.",
|
|
10525
|
+
"headers": {
|
|
10526
|
+
"Etag": {
|
|
10527
|
+
"description": "The new UUID ETag of the ServiceOwner Context",
|
|
10528
|
+
"example": "123e4567-e89b-12d3-a456-426614174000",
|
|
10529
|
+
"schema": {
|
|
10530
|
+
"type": "string"
|
|
10531
|
+
}
|
|
10532
|
+
}
|
|
10533
|
+
}
|
|
10442
10534
|
},
|
|
10443
10535
|
"401": {
|
|
10444
|
-
"description": "Missing or invalid authentication token.
|
|
10536
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
10445
10537
|
},
|
|
10446
10538
|
"403": {
|
|
10447
10539
|
"description": "Forbidden"
|
|
@@ -10478,7 +10570,7 @@
|
|
|
10478
10570
|
},
|
|
10479
10571
|
"security": [
|
|
10480
10572
|
{
|
|
10481
|
-
"
|
|
10573
|
+
"maskinporten": [
|
|
10482
10574
|
"digdir:dialogporten.serviceprovider"
|
|
10483
10575
|
]
|
|
10484
10576
|
}
|
|
@@ -10546,7 +10638,7 @@
|
|
|
10546
10638
|
"description": "Validation error occurred. See problem details for a list of errors."
|
|
10547
10639
|
},
|
|
10548
10640
|
"401": {
|
|
10549
|
-
"description": "Missing or invalid authentication token.
|
|
10641
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider digdir:dialogporten.serviceprovider.changetransmissions\u0022."
|
|
10550
10642
|
},
|
|
10551
10643
|
"403": {
|
|
10552
10644
|
"description": "Forbidden"
|
|
@@ -10586,8 +10678,9 @@
|
|
|
10586
10678
|
},
|
|
10587
10679
|
"security": [
|
|
10588
10680
|
{
|
|
10589
|
-
"
|
|
10590
|
-
"digdir:dialogporten.serviceprovider"
|
|
10681
|
+
"maskinporten": [
|
|
10682
|
+
"digdir:dialogporten.serviceprovider",
|
|
10683
|
+
"digdir:dialogporten.serviceprovider.changetransmissions"
|
|
10591
10684
|
]
|
|
10592
10685
|
}
|
|
10593
10686
|
],
|
|
@@ -10643,7 +10736,7 @@
|
|
|
10643
10736
|
}
|
|
10644
10737
|
},
|
|
10645
10738
|
"401": {
|
|
10646
|
-
"description": "
|
|
10739
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
10647
10740
|
},
|
|
10648
10741
|
"403": {
|
|
10649
10742
|
"description": "Forbidden"
|
|
@@ -10693,7 +10786,7 @@
|
|
|
10693
10786
|
},
|
|
10694
10787
|
"security": [
|
|
10695
10788
|
{
|
|
10696
|
-
"
|
|
10789
|
+
"maskinporten": [
|
|
10697
10790
|
"digdir:dialogporten.serviceprovider"
|
|
10698
10791
|
]
|
|
10699
10792
|
}
|
|
@@ -10773,7 +10866,7 @@
|
|
|
10773
10866
|
"description": "Validation error occurred. See problem details for a list of errors."
|
|
10774
10867
|
},
|
|
10775
10868
|
"401": {
|
|
10776
|
-
"description": "Missing or invalid authentication token.
|
|
10869
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
10777
10870
|
},
|
|
10778
10871
|
"403": {
|
|
10779
10872
|
"description": "Unauthorized to update the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
|
|
@@ -10836,7 +10929,7 @@
|
|
|
10836
10929
|
},
|
|
10837
10930
|
"security": [
|
|
10838
10931
|
{
|
|
10839
|
-
"
|
|
10932
|
+
"maskinporten": [
|
|
10840
10933
|
"digdir:dialogporten.serviceprovider"
|
|
10841
10934
|
]
|
|
10842
10935
|
}
|
|
@@ -10877,7 +10970,7 @@
|
|
|
10877
10970
|
"description": "Successfully returned the dialog seen log records."
|
|
10878
10971
|
},
|
|
10879
10972
|
"401": {
|
|
10880
|
-
"description": "
|
|
10973
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
10881
10974
|
},
|
|
10882
10975
|
"403": {
|
|
10883
10976
|
"description": "Forbidden"
|
|
@@ -10917,7 +11010,7 @@
|
|
|
10917
11010
|
},
|
|
10918
11011
|
"security": [
|
|
10919
11012
|
{
|
|
10920
|
-
"
|
|
11013
|
+
"maskinporten": [
|
|
10921
11014
|
"digdir:dialogporten.serviceprovider"
|
|
10922
11015
|
]
|
|
10923
11016
|
}
|
|
@@ -10964,7 +11057,7 @@
|
|
|
10964
11057
|
"description": "Successfully returned the dialog seen log record."
|
|
10965
11058
|
},
|
|
10966
11059
|
"401": {
|
|
10967
|
-
"description": "
|
|
11060
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
10968
11061
|
},
|
|
10969
11062
|
"403": {
|
|
10970
11063
|
"description": "Forbidden"
|
|
@@ -11004,7 +11097,7 @@
|
|
|
11004
11097
|
},
|
|
11005
11098
|
"security": [
|
|
11006
11099
|
{
|
|
11007
|
-
"
|
|
11100
|
+
"maskinporten": [
|
|
11008
11101
|
"digdir:dialogporten.serviceprovider"
|
|
11009
11102
|
]
|
|
11010
11103
|
}
|
|
@@ -11045,7 +11138,7 @@
|
|
|
11045
11138
|
"description": "Successfully returned the dialog transmission list."
|
|
11046
11139
|
},
|
|
11047
11140
|
"401": {
|
|
11048
|
-
"description": "Missing or invalid authentication token.
|
|
11141
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
11049
11142
|
},
|
|
11050
11143
|
"403": {
|
|
11051
11144
|
"description": "Unauthorized to get the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
|
|
@@ -11085,7 +11178,7 @@
|
|
|
11085
11178
|
},
|
|
11086
11179
|
"security": [
|
|
11087
11180
|
{
|
|
11088
|
-
"
|
|
11181
|
+
"maskinporten": [
|
|
11089
11182
|
"digdir:dialogporten.serviceprovider"
|
|
11090
11183
|
]
|
|
11091
11184
|
}
|
|
@@ -11163,7 +11256,7 @@
|
|
|
11163
11256
|
"description": "Validation error occurred. See problem details for a list of errors."
|
|
11164
11257
|
},
|
|
11165
11258
|
"401": {
|
|
11166
|
-
"description": "Missing or invalid authentication token.
|
|
11259
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
11167
11260
|
},
|
|
11168
11261
|
"403": {
|
|
11169
11262
|
"description": "Unauthorized to create child entity for the given dialog (dialog not owned by authenticated organization or has additional scope requirements defined in service identifiers policy)."
|
|
@@ -11226,7 +11319,7 @@
|
|
|
11226
11319
|
},
|
|
11227
11320
|
"security": [
|
|
11228
11321
|
{
|
|
11229
|
-
"
|
|
11322
|
+
"maskinporten": [
|
|
11230
11323
|
"digdir:dialogporten.serviceprovider"
|
|
11231
11324
|
]
|
|
11232
11325
|
}
|
|
@@ -11273,7 +11366,7 @@
|
|
|
11273
11366
|
"description": "Successfully returned the dialog transmission."
|
|
11274
11367
|
},
|
|
11275
11368
|
"401": {
|
|
11276
|
-
"description": "Missing or invalid authentication token.
|
|
11369
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
11277
11370
|
},
|
|
11278
11371
|
"403": {
|
|
11279
11372
|
"description": "Unauthorized to get child entity for the given dialog (dialog not owned by authenticated organization or has additional scope requirements defined in service identifiers policy)."
|
|
@@ -11313,7 +11406,7 @@
|
|
|
11313
11406
|
},
|
|
11314
11407
|
"security": [
|
|
11315
11408
|
{
|
|
11316
|
-
"
|
|
11409
|
+
"maskinporten": [
|
|
11317
11410
|
"digdir:dialogporten.serviceprovider"
|
|
11318
11411
|
]
|
|
11319
11412
|
}
|
|
@@ -11392,7 +11485,7 @@
|
|
|
11392
11485
|
"description": "Validation error occurred. See problem details for a list of errors."
|
|
11393
11486
|
},
|
|
11394
11487
|
"401": {
|
|
11395
|
-
"description": "Missing or invalid authentication token.
|
|
11488
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider digdir:dialogporten.serviceprovider.changetransmissions\u0022."
|
|
11396
11489
|
},
|
|
11397
11490
|
"403": {
|
|
11398
11491
|
"description": "Unauthorized to update child entity for the given dialog (dialog not owned by authenticated organization or has additional scope requirements defined in service identifiers policy)."
|
|
@@ -11455,8 +11548,9 @@
|
|
|
11455
11548
|
},
|
|
11456
11549
|
"security": [
|
|
11457
11550
|
{
|
|
11458
|
-
"
|
|
11459
|
-
"digdir:dialogporten.serviceprovider"
|
|
11551
|
+
"maskinporten": [
|
|
11552
|
+
"digdir:dialogporten.serviceprovider",
|
|
11553
|
+
"digdir:dialogporten.serviceprovider.changetransmissions"
|
|
11460
11554
|
]
|
|
11461
11555
|
}
|
|
11462
11556
|
],
|
|
@@ -11544,7 +11638,7 @@
|
|
|
11544
11638
|
"description": "Successfully returned the dialog list."
|
|
11545
11639
|
},
|
|
11546
11640
|
"401": {
|
|
11547
|
-
"description": "Missing or invalid authentication token.
|
|
11641
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider digdir:dialogporten.serviceprovider.search\u0022."
|
|
11548
11642
|
},
|
|
11549
11643
|
"503": {
|
|
11550
11644
|
"content": {
|
|
@@ -11568,7 +11662,7 @@
|
|
|
11568
11662
|
},
|
|
11569
11663
|
"security": [
|
|
11570
11664
|
{
|
|
11571
|
-
"
|
|
11665
|
+
"maskinporten": [
|
|
11572
11666
|
"digdir:dialogporten.serviceprovider",
|
|
11573
11667
|
"digdir:dialogporten.serviceprovider.search"
|
|
11574
11668
|
]
|
|
@@ -11620,7 +11714,7 @@
|
|
|
11620
11714
|
"description": "Validation error occurred. See problem details for a list of errors."
|
|
11621
11715
|
},
|
|
11622
11716
|
"401": {
|
|
11623
|
-
"description": "Missing or invalid authentication token.
|
|
11717
|
+
"description": "Missing or invalid authentication token. This endpoint requires a token from Maskinporten with the scope(s) \u0022digdir:dialogporten.serviceprovider\u0022."
|
|
11624
11718
|
},
|
|
11625
11719
|
"403": {
|
|
11626
11720
|
"description": "Unauthorized to update the supplied dialog (not owned by authenticated organization or has additional scope requirements defined in policy)."
|
|
@@ -11680,7 +11774,7 @@
|
|
|
11680
11774
|
},
|
|
11681
11775
|
"security": [
|
|
11682
11776
|
{
|
|
11683
|
-
"
|
|
11777
|
+
"maskinporten": [
|
|
11684
11778
|
"digdir:dialogporten.serviceprovider"
|
|
11685
11779
|
]
|
|
11686
11780
|
}
|
|
@@ -11698,7 +11792,7 @@
|
|
|
11698
11792
|
"name": "Serviceowner"
|
|
11699
11793
|
},
|
|
11700
11794
|
{
|
|
11701
|
-
"description": "Endpoints for end users to read and act on dialogs they are authorized to access. Used both by persons logged in via ID-porten and by Altinn system users authenticated via Maskinporten. Requires a token with the \u0060digdir:dialogporten\u0060 scope
|
|
11795
|
+
"description": "Endpoints for end users to read and act on dialogs they are authorized to access. Used both by persons logged in via ID-porten and by Altinn system users authenticated via Maskinporten. Requires a token with the \u0060digdir:dialogporten\u0060 scope.\n\nA .NET client SDK is available: [Altinn.ApiClients.Dialogporten.EndUser](https://www.nuget.org/packages/Altinn.ApiClients.Dialogporten.EndUser/).",
|
|
11702
11796
|
"name": "Enduser"
|
|
11703
11797
|
},
|
|
11704
11798
|
{
|