Register

This method is used to authenticate with your application. It is responsible for verifying the supplied user credentials and establishing or renewing a connection. The authentication information will be stored in the metadata object and will be included in all request bodies. All applications must implement the Register method.

Request
Request Body schema: application/json

An object containing the authentication information gathered using the connection form you created for your application. It will contain whatever fields you defined in this form. Your method must then use this data to perform authentication with your backend service.

object (ExampleRegisterRequest)
Responses
200

The Register method returns the result of the carrier's authentication process. This information will be included in the metadata of every subsequent request to your application.

post/Register
Request samples
application/json
{
  • "registration_info": {
    },
  • "transaction_id": "00000000-0000-0000-0000-000000000000",
  • "metadata": {
    }
}
Response samples
application/json
{
  • "credentials": {
    },
  • "metadata": {
    }
}