Trendsic Platform Service

<back to all web services

RfpAddendaListRequest

Requires Authentication
Requires any of the roles:Agent, Administrator
The following routes are available for this service:
GET,OPTIONS/v1/Rfp/{RfpDocumentUID}/Addenda

export class AddendaChange
{
    public ChangeId: string;
    public ChangeType: string;
    public TargetSeq?: number;
    public ItemNumber: string;
    public ItemName: string;
    public Field: string;
    public OldValue: string;
    public NewValue: string;
    public Description: string;
    public Status: string;

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

export class AddendaChangeSet
{
    public ChangeSetId: string;
    public SourceRfpDocumentID: number;
    public SourceFileName: string;
    public DocumentType: string;
    public ExtractedAtUtc?: string;
    public Summary: string;
    public Changes: AddendaChange[] = [];

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

export class WageClassification
{
    public Title: string;
    public BaseRate?: number;
    public FringeRate?: number;
    public ParishNote: string;
    public SourceLine: string;
    public BenchmarkFringeRate?: number;
    public FringeCompareNote: string;

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

export class WageDeterminationResult
{
    public SourceRfpDocumentID: number;
    public SourceFileName: string;
    public WdNumber: string;
    public ExtractedAtUtc?: string;
    public Classifications: WageClassification[] = [];
    public Source: string;
    public IsTrustworthy: boolean;
    public ExecutiveOrderFloor?: number;
    public PublishedDate: string;
    public ProjectParish: string;
    public Warnings: string[] = [];

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

export class RfpAddendaResponse
{
    public ResponseStatus: ResponseStatus;
    public RfpDocumentID: number;
    public Diffs: AddendaChangeSet[] = [];
    public WageDeterminations: WageDeterminationResult[] = [];
    public Message: string;
    public Reflowed: boolean;

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

export class RfpAddendaListRequest
{
    public RfpDocumentUID: string;

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

TypeScript RfpAddendaListRequest DTOs

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.

GET /v1/Rfp/{RfpDocumentUID}/Addenda HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	ResponseStatus: 
	{
		ErrorCode: String,
		Message: String,
		StackTrace: String,
		Errors: 
		[
			{
				ErrorCode: String,
				FieldName: String,
				Message: String,
				Meta: 
				{
					String: String
				}
			}
		],
		Meta: 
		{
			String: String
		}
	},
	RfpDocumentID: 0,
	Diffs: 
	[
		{
			ChangeSetId: String,
			SourceRfpDocumentID: 0,
			SourceFileName: String,
			DocumentType: String,
			ExtractedAtUtc: 0001-01-01,
			Summary: String,
			Changes: 
			[
				{
					ChangeId: String,
					ChangeType: String,
					TargetSeq: 0,
					ItemNumber: String,
					ItemName: String,
					Field: String,
					OldValue: String,
					NewValue: String,
					Description: String,
					Status: String
				}
			]
		}
	],
	WageDeterminations: 
	[
		{
			SourceRfpDocumentID: 0,
			SourceFileName: String,
			WdNumber: String,
			ExtractedAtUtc: 0001-01-01,
			Classifications: 
			[
				{
					Title: String,
					BaseRate: 0,
					FringeRate: 0,
					ParishNote: String,
					SourceLine: String,
					BenchmarkFringeRate: 0,
					FringeCompareNote: String
				}
			],
			Source: String,
			IsTrustworthy: False,
			ExecutiveOrderFloor: 0,
			PublishedDate: String,
			ProjectParish: String,
			Warnings: 
			[
				String
			]
		}
	],
	Message: String,
	Reflowed: False
}