Trendsic Platform Service

<back to all web services

ProjectTypeRequest

Requires Authentication
The following routes are available for this service:
GET,POST,PUT,DELETE,OPTIONS/v1/ProjectType/{ProjectTypeID}
GET,POST,PUT,DELETE,OPTIONS/v1/ProjectType
"use strict";
export class ProjectType {
    /** @param {{ProjectTypeID?:number,ProjectType?:string}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {number} */
    ProjectTypeID;
    /** @type {string} */
    ProjectType;
}
export class ProjectTypeResponse {
    /** @param {{ResponseStatus?:ResponseStatus,ProjectType?:ProjectType[]}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {ResponseStatus} */
    ResponseStatus;
    /** @type {ProjectType[]} */
    ProjectType = [];
}
export class ProjectTypeRequest {
    /** @param {{ProjectTypeID?:number,ProjectType?:ProjectType[]}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {number} */
    ProjectTypeID;
    /** @type {ProjectType[]} */
    ProjectType = [];
}

JavaScript ProjectTypeRequest 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.

POST /v1/ProjectType/{ProjectTypeID} HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"ProjectTypeID":0,"ProjectType":[{"ProjectTypeID":0,"ProjectType":"String"}]}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"ProjectType":[{"ProjectTypeID":0,"ProjectType":"String"}]}