Get typed data for removing a Safe owner
GET/api/v1/owners/remove/transaction-data
Returns the EIP-712 typed data that needs to be signed by the user's wallet to remove an owner from the Safe. This endpoint is used as part of a three-step process:
- Call this endpoint to get the EIP-712 typed data
- Sign the typed data with the user's wallet using EIP-712 signature standard
- Submit the signature to the DELETE
/api/v1/owners
endpoint
Request
Responses
- 200
- 401
- 404
- 422
- 500
Successfully retrieved EIP-712 typed data for signing.
Unauthorized - invalid or missing authentication token.
Safe account not found for the user.
Unprocessable Entity - validation errors in query parameters.
Internal server error.