POST api/v1/POA/EventLogWeb
Allowed Roles
Request Information
POAEventLogRequestName | Description | Type | Additional information |
---|---|---|---|
POAId |
Fullmaktens unika ID. |
globally unique identifier |
None. |
FilterByTimeStamp |
Datum för filtrera händelser. Filtret säkerställer att event som har skett inom angiven minut hämtas. |
date |
None. |
TimeSpanStart |
Tidpunkt för start av tidsspann inom vilket händelser ska sökas fram. |
date |
None. |
TimeSpanEnd |
Tidpunkt för slut av tidsspann inom vilket händelser ska sökas fram. |
date |
None. |
IncludePoaFamily |
Inkluderar samtliga händelser för alla besläktade fullmakter. När IncludePoaFamily är satt till true inkluderar svaret information från ersatta och ersättande fullakter. Om denna flagga inte anges så är defaultvärdet false. |
boolean |
None. |
Filter |
Lista med händelsetyper som ska redovisas i resultatet. |
Collection of POALogEventType |
None. |
Request Formats
application/xml, text/xml
Sample:
<POAEventLogRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://api.fullmaktskollen.se/"> <POAId>321b4809-ff2e-45f5-bf10-44f70a2124d7</POAId> <FilterByTimeStamp>2025-07-30T18:55:05.2645599+00:00</FilterByTimeStamp> <TimeSpanStart>2025-07-30T18:55:05.2645599+00:00</TimeSpanStart> <TimeSpanEnd>2025-07-30T18:55:05.2645599+00:00</TimeSpanEnd> <IncludePoaFamily>true</IncludePoaFamily> <Filter> <POALogEventType>POACreated</POALogEventType> <POALogEventType>POACreated</POALogEventType> </Filter> </POAEventLogRequest>
Response Information
Resource Description
EventLogResponseName | Description | Type | Additional information |
---|---|---|---|
POAId |
Fullmaktens unika ID. |
globally unique identifier |
None. |
POALogEvents |
Lista med händelser för fullmakten. |
Collection of POALogEvent |
None. |
Response Formats
application/xml, text/xml
Sample:
<EventLogResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://api.fullmaktskollen.se/"> <POAId>df759165-7c07-4cfc-b619-c036274e2f1e</POAId> <POALogEvents> <POALogEvent> <EventPOAId>c1f325ab-06e5-4593-bbf4-0be6cbfc292d</EventPOAId> <TimeStamp>2025-07-30T18:55:05.2645599+00:00</TimeStamp> <Description>sample string 1</Description> <POALogEventType>POACreated</POALogEventType> </POALogEvent> <POALogEvent> <EventPOAId>c1f325ab-06e5-4593-bbf4-0be6cbfc292d</EventPOAId> <TimeStamp>2025-07-30T18:55:05.2645599+00:00</TimeStamp> <Description>sample string 1</Description> <POALogEventType>POACreated</POALogEventType> </POALogEvent> </POALogEvents> </EventLogResponse>