| GET,POST,PUT,DELETE,OPTIONS | /v1/ProjectType/{ProjectTypeID} | ||
|---|---|---|---|
| GET,POST,PUT,DELETE,OPTIONS | /v1/ProjectType |
export class ProjectType
{
public ProjectTypeID: number;
public ProjectType: string;
public constructor(init?: Partial<ProjectType>) { (Object as any).assign(this, init); }
}
export class ProjectTypeResponse
{
public ResponseStatus: ResponseStatus;
public ProjectType: ProjectType[] = [];
public constructor(init?: Partial<ProjectTypeResponse>) { (Object as any).assign(this, init); }
}
export class ProjectTypeRequest
{
public ProjectTypeID: number;
public ProjectType: ProjectType[] = [];
public constructor(init?: Partial<ProjectTypeRequest>) { (Object as any).assign(this, init); }
}
TypeScript ProjectTypeRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=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"}]}