Type Alias EndpointConfigurationCallback

EndpointConfigurationCallback: {
    configuration: {
        organisationManagedSecretId?: number;
        url: string;
    };
    type: "CALLBACK";
}
{
"type": "CALLBACK",
"configuration": {
"url": "https://api.url.com/callback"
}
}

Type declaration

  • configuration: {
        organisationManagedSecretId?: number;
        url: string;
    }

    The configuration of the endpoint.

    • OptionalorganisationManagedSecretId?: number

      The identifier for the organisation managed secret that is associated with the endpoint. Should represent the secret string used for verifying the authenticity of the request made from the OneBlink system.

    • url: string

      URL that the request is made to.

  • type: "CALLBACK"

    The type of endpoint.