Create-verifiable credentials
// Some code
Request:
{
partnerId: String,
partnerKey: String,
name: String,
expiration: Timestamp(ms),
attributes:[{
name: String,
type: String (Enum),
required: boolean,
defaultValue: value,
}],
}
Response:
{
id: String (please store this),
name: String,
numClaims: Number,
isOpen: Boolean,
wallets: [String],
dids: [String],
fields: [
attributes
],
expiration: Timestamp
}Last updated