GET | /v1/OutOfMarketArea | Get list of all Out Of Market Area Commission Number imports | Get list of all Out Of Market Area Commission Number imports |
---|
export class OutOfMarketAreaCommsJob
{
public id: number;
public gasId: string;
public dateCreated: string;
public processedRecords: number;
public status: number;
public fileName: string;
public constructor(init?: Partial<OutOfMarketAreaCommsJob>) { (Object as any).assign(this, init); }
}
export class OutOfMarketAreaCommsJobsResponse
{
public dataProcesses: OutOfMarketAreaCommsJob[] = [];
public constructor(init?: Partial<OutOfMarketAreaCommsJobsResponse>) { (Object as any).assign(this, init); }
}
export class GetOutOfMarketAreaCommsJobsRequest implements IGet
{
public constructor(init?: Partial<GetOutOfMarketAreaCommsJobsRequest>) { (Object as any).assign(this, init); }
}
TypeScript GetOutOfMarketAreaCommsJobsRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/OutOfMarketArea HTTP/1.1 Host: uat-api-vehicle-mgt-mb-dhc.rapp-customers.co.uk Accept: application/json
HTTP/1.1 200 OK Content-Type: application/json Content-Length: length {"dataProcesses":[{"id":0,"gasId":"String","dateCreated":"String","processedRecords":0,"status":0,"fileName":"String"}]}