Skip to main content

Api Authentication

POST 

/v3/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

Body

    appId appId (string)required

    The application identifier which is used to identify the application used.

    appEnv IGNISIGN_APPLICATION_ENV (string)required

    Possible values: [DEVELOPMENT, STAGING, PRODUCTION]

    The execution environment of the application where request are executed.

    secret stringrequired

    The secret related to the application and the environment.
    This secret can be obtained from the Ignisign's Console (https://console.ignisign.io)

Responses

OK

Schema

    jwtToken stringrequired
Loading...