Portal

<back to all web services

BrowseAllPortalEventQueue

Requires Authentication
Requires any of the roles:VeoliaAdmin, SysAdmin
The following routes are available for this service:
GET/portaleventqueue
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class BrowseAllPortalEventQueue implements IGet
    {
        
    }

    public static class BrowseAllPortalEventQueueResponse extends ResponseBase
    {
        public ArrayList<PortalEventQueueSimple> Items = null;
        
        public ArrayList<PortalEventQueueSimple> getItems() { return Items; }
        public BrowseAllPortalEventQueueResponse setItems(ArrayList<PortalEventQueueSimple> value) { this.Items = value; return this; }
    }

    public static class ResponseBase
    {
        public ResponseStatus ResponseStatus = null;
        
        public ResponseStatus getResponseStatus() { return ResponseStatus; }
        public ResponseBase setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
    }

    public static class PortalEventQueueSimple
    {
        public Integer Id = null;
        public PortalEventQueueType EventType = null;
        public Integer DataId = null;
        public Date CreatedDateTime = null;
        
        public Integer getId() { return Id; }
        public PortalEventQueueSimple setId(Integer value) { this.Id = value; return this; }
        public PortalEventQueueType getEventType() { return EventType; }
        public PortalEventQueueSimple setEventType(PortalEventQueueType value) { this.EventType = value; return this; }
        public Integer getDataId() { return DataId; }
        public PortalEventQueueSimple setDataId(Integer value) { this.DataId = value; return this; }
        public Date getCreatedDateTime() { return CreatedDateTime; }
        public PortalEventQueueSimple setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; }
    }

    public static enum PortalEventQueueType
    {
        @SerializedName("0") CreateUser(0),
        @SerializedName("1") ViewTenderUserInvite(1),
        @SerializedName("2") CreateTenderUser(2),
        @SerializedName("3") CreateQuestion(3),
        @SerializedName("4") ViewSupplementaryRequest(4),
        @SerializedName("5") CreateSupplementaryResponse(5),
        @SerializedName("6") ViewContractVersion(6),
        @SerializedName("7") AcceptContractVersion(7),
        @SerializedName("8") CreateContractVersionComment(8),
        @SerializedName("9") ViewPurchaseOrderVersion(9),
        @SerializedName("10") AcceptPurchaseOrderVersion(10),
        @SerializedName("11") CreatePurchaseOrderVersionComment(11),
        @SerializedName("12") EditUser(12),
        @SerializedName("13") SubmitTenderUserTenderRound(13);

        private final int value;
        PortalEventQueueType(final int intValue) { value = intValue; }
        public int getValue() { return value; }
    }

}

Java BrowseAllPortalEventQueue DTOs

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

HTTP + CSV

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

GET /portaleventqueue HTTP/1.1 
Host: szallitoiportal-be.veolia.hu 
Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"Items":[{"Id":0,"EventType":0,"DataId":0,"CreatedDateTime":"0001-01-01T00:00:00.0000000"}],"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}