POST

user/

Documentation
Test
Headers

POST user/

Service Parameters

  • [IRegisterUserInputPort] input

Parameters

Name Type Required Source Description
data RegisterUserClientDto Yes Body Parameter
Request
Response

Request

{
  "clientId": "string",
  "userId": "string",
  "userName": "string"
}

Response

Type: RegisterUserClientResponseDto

{
  "sharedkey": "string",
  "imageSVG": "string"
}

Authentication

Custom Headers

Sending request...

Examples

cURL
C#
JavaScript
curl -X POST https://authifypass.com/user/
     -H "Content-Type: application/json"
     -d '{
  "clientId": "string",
  "userId": "string",
  "userName": "string"
}'                    
using var client = new HttpClient();
client.BaseAddress = new Uri("https://authifypass.com");
using var content = new StringContent({
  "clientId": "string",
  "userId": "string",
  "userName": "string"
}, System.Text.Encoding.UTF8, "application/json");
using var response = await client.PostAsync("user/", content);response.EnsureSuccessStatusCode();
var content = await response.Content.ReadAsStringAsync();
fetch("https://authifypass.com/user/", {
     method: "POST",
     headers: { "Content-Type": "application/json" },
     body: {
  "clientId": "string",
  "userId": "string",
  "userName": "string"
}})
.then(res => res.json())
.then(data => console.log(data));