This repository has no description
0

Configure Feed

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

core / lexicons / temp / account / deleteEmail.json
735 B 26 lines
1{ 2 "lexicon": 1, 3 "id": "org.tangled.temp.account.deleteEmail", 4 "defs": { 5 "main": { 6 "type": "procedure", 7 "description": "Remove an email address from the authenticated account. Cannot remove the primary address.", 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 remove." 17 } 18 } 19 } 20 }, 21 "errors": [ 22 { "name": "CannotDeletePrimary", "description": "The primary email address cannot be deleted. Set another address as primary first." } 23 ] 24 } 25 } 26}