Delegates
get
Authorizations
sessionidstringOptional
Query parameters
safestring · nullableOptional
delegatestringOptional
delegatorstringOptional
labelstringOptional
limitintegerOptional
Number of results to return per page.
offsetintegerOptional
The initial index from which to return the results.
Responses
200Success
application/json
countintegerRequiredExample:
123nextstring · uri · nullableOptionalExample:
http://api.example.org/accounts/?offset=400&limit=100previousstring · uri · nullableOptionalExample:
http://api.example.org/accounts/?offset=200&limit=100400
Invalid data
get
/api/v2/delegates/post
{
"types": {
"EIP712Domain": [
{"name": "name", "type": "string"},
{"name": "version", "type": "string"},
{"name": "chainId", "type": "uint256"},
],
"Delegate": [
{"name": "delegateAddress", "type": "address"},
{"name": "totp", "type": "uint256"},
],
},
"primaryType": "Delegate",
"domain": {
"name": "Safe Transaction Service",
"version": "1.0",
"chainId": chain_id,
},
"message": {
"delegateAddress": delegate_address,
"totp": totp,
},
}Authorizations
sessionidstringOptional
Body
Mixin to validate delegate operations data
safestring · nullableOptional
delegatestringRequired
delegatorstringRequired
signaturestringRequired
labelstring · max: 50Required
expiryDatestring · nullableOptional
Responses
202
Accepted
400
Malformed data
post
/api/v2/delegates/No content
delete
Authorizations
sessionidstringOptional
Path parameters
delegate_addressstringRequired
Responses
204
Deleted
400
Malformed data
404
Delegate not found
422
Invalid Ethereum address/Error processing data
delete
/api/v2/delegates/{delegate_address}/No content
Last updated