Skip to main content

Api Authentication

POST 

https://api.ignisign.io/v4/auth/app-api

This endpoint authenticates an application over the Ignisign API.
The identification is related to an environment (appEnv) and an application (appId).
The secret is used to authenticate the application.
If validated, a JWT token is returned that can be used to authenticate the application using a Bearer token.

Request

Responses

OK
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://api.ignisign.io/v4/auth/app-api");
request.Headers.Add("Accept", "application/json");
var content = new StringContent("{\n \"appId\": \"appId_XXXX-XXXX-XXXX-XXXX-XXXX\",\n \"appEnv\": \"DEVELOPMENT\",\n \"secret\": \"sk_development_XXXX-XXXX-XXXX-XXXX-XXXX\"\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.ignisign.io
Body
{
  "appId": "appId_XXXX-XXXX-XXXX-XXXX-XXXX",
  "appEnv": "DEVELOPMENT",
  "secret": "sk_development_XXXX-XXXX-XXXX-XXXX-XXXX"
}
ResponseClear

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