PUT | /v1/UpdateDataProcess | Update data process |
---|
export class UpdateDataProcessRequest
{
public dataProcessId: number;
public status: number;
public constructor(init?: Partial<UpdateDataProcessRequest>) { (Object as any).assign(this, init); }
}
export class DataProcessResult
{
public message: string;
public constructor(init?: Partial<DataProcessResult>) { (Object as any).assign(this, init); }
}
export class UpdateDataProcessResponse extends DataProcessResult
{
public constructor(init?: Partial<UpdateDataProcessResponse>) { super(init); (Object as any).assign(this, init); }
}
TypeScript UpdateDataProcessRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT /v1/UpdateDataProcess HTTP/1.1
Host: uat-api-vehicle-mgt-mb-dhc.rapp-customers.co.uk
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"dataProcessId":0,"status":0}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"message":"String"}