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 .other suffix or ?format=other
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: text/jsonl
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"dataProcesses":[{"id":0,"gasId":"String","dateCreated":"String","processedRecords":0,"status":0,"fileName":"String"}]}