GET /api/integration/sak/{sakid}/parter

Fetches participants on a given case

Parameters

Name In Description Required Type
sakId path true integer

Responses

Code Returns Type
200 Success Acos.WebSak.Pluss.Services.Integration.Models.Sakspart[]
401 Unauthorized - Missing or invalid access token
403 Forbidden - Provided access token does not permit usage of this API or data
Response Example
[{        
        "partsforhold": 
            { 
               "id": "string",
                "beskrivelse": "string"
            },
        "id":"integer",
        "navn":"string",
        "gidKode":"string",
        "kode":"string",
        "telefon":"string",
        "epost":"string",
        "adresse1":"string",
        "adresse2":"string",
        "adresse3":"string",
        "adresse4":"string",
        "postnr":"string",
        "poststed":"string",
        "land":"string",
        "offentligNummer":"string",
        "attention":"string",
        "referanse":"string",
        "erPerson":"boolean",
        "erKopiMottaker":"boolean"
}]

POST /api/integration/sak/{sakid}/parter

Add a participant to the given case

Parameters

Name In Description Required Type
sakId path Case identificator true integer

Request body

{ 
        
        "parter": 
            [{ 
               "id": "integer",
                "partsforhold": "string",
                "kontaktInformasjon": ""
        }]
    
}

Responses

Code Returns Type
200 Success Acos.WebSak.Pluss.Services.Integration.Models.Sakspart[]
401 Unauthorized - Missing or invalid access token
403 Forbidden - Provided access token does not permit usage of this API or data
Response Example
[{        
        "partsforhold": 
            { 
               "id": "string",
                "beskrivelse": "string"
            },
        "id":"integer",
        "navn":"string",
        "gidKode":"string",
        "kode":"string",
        "telefon":"string",
        "epost":"string",
        "adresse1":"string",
        "adresse2":"string",
        "adresse3":"string",
        "adresse4":"string",
        "postnr":"string",
        "poststed":"string",
        "land":"string",
        "offentligNummer":"string",
        "attention":"string",
        "referanse":"string",
        "erPerson":"boolean",
        "erKopiMottaker":"boolean"
}]