Fetch in-depth information about a single vendor
vendors.retrieve(strurn) -> VendorRetrieveResponse
GET/v1/vendors/{urn}
Fetch in-depth information about a single vendor
Parameters
urn: str
Returns
Fetch in-depth information about a single vendor
import os
from clarative import Clarative
client = Clarative(
api_key=os.environ.get("CLARATIVE_API_KEY"), # This is the default and can be omitted
)
vendor = client.vendors.retrieve(
"urn",
)
print(vendor.created_at){
"created_at": "2019-12-27T18:11:19.117Z",
"description": "description",
"name": "name",
"urn": "urn"
}Returns Examples
{
"created_at": "2019-12-27T18:11:19.117Z",
"description": "description",
"name": "name",
"urn": "urn"
}