| GET | /api_metadata/{record_class} | ||
|---|---|---|---|
| GET | /api_metadata/{record_class}/{record_group_id} |
"use strict";
export class api_metadata {
/** @param {{am_operation_type?:string,am_operation_timestamp?:string,am_record_class?:string,am_record_group_id?:number,am_record_id?:string,am_record_json?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
am_operation_type;
/** @type {?string} */
am_operation_timestamp;
/** @type {string} */
am_record_class;
/** @type {?number} */
am_record_group_id;
/** @type {string} */
am_record_id;
/** @type {string} */
am_record_json;
}
export class api_metadatasResponse extends Array {
constructor(init) { super(init); Object.assign(this, init) }
}
export class api_metadatas {
/** @param {{record_class?:string,record_group_id?:number}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
record_class;
/** @type {?number} */
record_group_id;
}
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 /api_metadata/{record_class} HTTP/1.1
Host: milliet.io
Accept: application/json
HTTP/1.1 200 OK Content-Type: application/json Content-Length: length []