Skip to main content

Create a User

POST 

https://api.goodstack.io/v1/users

Create a User

Responses​

Successfully created a User

Schema

    data

    object

    idstring
    Example: user_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    createdAtdate-time
    deletedAtdate-time
    objectstring
    Example: user

Authorization: Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key starting with 'sk_' that must be kept secure
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://api.goodstack.io/v1/users");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "<Authorization>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.goodstack.io
Auth
ResponseClear

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