MinUddannelse Api

<back to all web services

SpecialundervisningRequest

Henter specialundervisning

Requires Authentication
Required role:MueApi
The following routes are available for this service:
POST/muelev/elevstamdata/specialundervisning
SpecialundervisningRequest Parameters:
NameParameterData TypeRequiredDescription
KommuneKodebodyint?NoHent specialundervisning på elever i kommunen
InstitutionsKodebodystringNoHent specialundervisning på elever på skolen
PersonGuidsbodyList<Guid>NoUnik personidentifikation. Angives, hvis der kun ønskes data for enkelte personer
InkluderCprNumrebodyboolNoPersonnumre medtages
SpecialundervisningResponse Parameters:
NameParameterData TypeRequiredDescription
SpecialundervisningformList<SpecialundervisningDto>No
SpecialundervisningDto Parameters:
NameParameterData TypeRequiredDescription
PersonGuidformGuidNo
StartdatoformDateTimeNo
SlutdatoformDateTime?No
SamletTimetalformdecimalNo
UgeTimetalformdecimalNo
HenvistformboolNo
BemaerkningformstringNo
InstitutionskodeformstringNo

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /muelev/elevstamdata/specialundervisning HTTP/1.1 
Host: api.minuddannelse.net 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	kommuneKode: 0,
	institutionsKode: String,
	personGuids: 
	[
		00000000000000000000000000000000
	],
	inkluderCprNumre: False
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	specialundervisning: 
	[
		{
			personGuid: 00000000000000000000000000000000,
			startdato: 0001-01-01,
			slutdato: 0001-01-01,
			samletTimetal: 0,
			ugeTimetal: 0,
			henvist: False,
			bemaerkning: String,
			institutionskode: String
		}
	]
}