Read MetaData
Retrieves the details of a Metadata object that has been previously created.
Parameters
Path Params | |
---|---|
yourCompany: | string |
Query Params | |
---|---|
filter: | string
https://xyzcompany.agiliron.net/agiliron/api-40/MetaData?filter=ObjectId,eq,3422&key=xyzkey List of condition abbrevations to be used: |
Header Params | |
---|---|
key: | string |
Query Auth | |
---|---|
key: | string |
Header Auth | |
---|---|
apiKey: | string |
Sample Code
{
"MetaDatas": {
"MetaData": [{
"Id": 18,
"ObjectType": "Receiving",
"ObjectId": 1213,
"ObjectKey": "Products",
"Data": "eyJ0ZXN0ZXN0IjoiMTEyMTIzMjMyMTEifQ==",
"Append": true
}],
"TotalRecords": 1,
"CurrentPage": 1,
"TotalPages": 1,
"PageSize": 50
}
}
<MetaDatas>
<MetaData>
<Id>18</Id>
<ObjectType>Receiving</ObjectType>
<ObjectId>1213</ObjectId>
<ObjectKey>Products</ObjectKey>
<Data>eyJ0ZXN0ZXN0IjoiMTEyMTIzMjMyMTEifQ==</Data>
<Append>true</Append>
</MetaData>
<TotalRecords>1</TotalRecords>
<CurrentPage>1</CurrentPage>
<TotalPages>1</TotalPages>
<PageSize>50</PageSize>
</MetaDatas>
WADL
<?xml version="1.0" encoding="utf-8"?>
<application>
<resources base="https://{yourCompany}.agiliron.net/agiliron/api-40/">
<resource path="MetaData">
<method name="GET">
<request>
<param name="key" type="xsd:string" style="query" required="true"/>
<param name="Filter" type="xsd:string" style="query"/>
</request>
<response status="200">
<representation mediaType="application/xml" element="yn:ResultSet"/>
</response>
<response status="400">
<representation mediaType="application/xml" element="ya:Error"/>
</response>
</method>
</resource>
</resources>
</application>
Updated about 3 hours ago