This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / lexicons / temp / account / setPrimaryEmail.json
863 B 27 lines
1{ 2 "lexicon": 1, 3 "id": "org.tangled.temp.account.setPrimaryEmail", 4 "defs": { 5 "main": { 6 "type": "procedure", 7 "description": "Set an email address as the primary address for the authenticated account. The address must already be verified.", 8 "input": { 9 "encoding": "application/json", 10 "schema": { 11 "type": "object", 12 "required": ["email"], 13 "properties": { 14 "email": { 15 "type": "string", 16 "description": "Email address to promote to primary." 17 } 18 } 19 } 20 }, 21 "errors": [ 22 { "name": "EmailNotVerified", "description": "The email address must be verified before it can be made primary." }, 23 { "name": "EmailNotFound", "description": "The email address is not associated with this account." } 24 ] 25 } 26 } 27}