.entry.get()
Function Example
/// Create instance
const connection = urchin(...config);
const foundAssets = connection.entry.get(AssetGetInput);
Parameters for AssetGetInput
label (* required)
description
type
default
valid values
*
Asset data to retrieve by public key
[PublicKey]
Response Example
[
{
template: "5SKNwTC2Svdd7AbynWTSwPdyZitDcLVcFeQrkqQ137Hd",
taxonomy: [],
private: false,
immutable: false,
archived: false,
inputs: [
{
headline: "this is a blog post",
stage: "published",
"featured image": "./hero.img",
body: "this is the body of the post."
}
]
}
]
Last updated