Portal

<back to all web services

BrowseTenderAllUserInvites

Requires Authentication
Required role:VeoliaAdmin
The following routes are available for this service:
GET/tender/{tenderid}/invite

export class ResponseBase
{
    public ResponseStatus: ResponseStatus;

    public constructor(init?: Partial<ResponseBase>) { (Object as any).assign(this, init); }
}

export class TenderUserInviteBase
{
    public TenderId: number;
    public UserId: number;
    public ViewedById?: number;
    public ViewingDateTime?: string;
    public IsViewed: boolean;

    public constructor(init?: Partial<TenderUserInviteBase>) { (Object as any).assign(this, init); }
}

export class TenderUserInviteSimple extends TenderUserInviteBase
{

    public constructor(init?: Partial<TenderUserInviteSimple>) { super(init); (Object as any).assign(this, init); }
}

export class BrowseTenderAllUserInvitesResponse extends ResponseBase
{
    public UserInvites: TenderUserInviteSimple[];

    public constructor(init?: Partial<BrowseTenderAllUserInvitesResponse>) { super(init); (Object as any).assign(this, init); }
}

export class BrowseTenderAllUserInvites implements IGet
{
    public TenderId: number;

    public constructor(init?: Partial<BrowseTenderAllUserInvites>) { (Object as any).assign(this, init); }
}

TypeScript BrowseTenderAllUserInvites DTOs

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

HTTP + OTHER

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

GET /tender/{tenderid}/invite HTTP/1.1 
Host: szallitoiportal-be.veolia.hu 
Accept: text/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"UserInvites":[{"TenderId":0,"UserId":0,"ViewedById":0,"ViewingDateTime":"0001-01-01T00:00:00.0000000","IsViewed":false}],"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}