Skip to main content

Authenticate user

POST 

https://api.fuse.io/api/v2/smart-wallets/auth

Authenticate user using signed data standard EIP-191.

Request

Responses

Created
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://api.fuse.io/api/v2/smart-wallets/auth");
request.Headers.Add("Accept", "application/json");
var content = new StringContent("{\n \"hash\": \"string\",\n \"signature\": \"string\",\n \"ownerAddress\": \"string\",\n \"smartWalletAddress\": \"string\"\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.fuse.io/api/v2/smart-wallets
Parameters
— queryrequired
Body required
{
  "hash": "string",
  "signature": "string",
  "ownerAddress": "string",
  "smartWalletAddress": "string"
}
ResponseClear

Click the Send API Request button above and see the response here!

Was this page helpful?