Issues an Async Http GET request to retrieve the metadata for baseInfo resource by application name. .The meta data is stored as a BSON document keyed by application name, and attached to the resource. The resource also carries as a read only collection all the meta data, so use of this method is rare since in most instances the baseInfo already has the metadata as a MetadataItem Returns (Task.)
Find Metadata that is related to the designated Base. The method will attempt to deserialize the stored object.
Name | Description |
---|---|
baseInfo | The base information. |
application | The application. |
Example in C#
// Returns: T
var item = await client.GetMetadataAsync<T>(BaseInfo baseInfo, String application);
Example in CURL
curl -X GET \
https://api.us.acresecurity.cloud/api/f/INSRTANCE.KEY/people/PERSON.KEY/meta/cUrlExample \
-H 'Authorization: Bearer TOKEN_GOES_HERE'