Starter

API Delete

Starter-backed delete token workflow support for APIs that require confirmation-style delete behavior.

Artifact
helix-api-delete-spring-boot-starter

Usage

build.gradle

Groovy DSL

dependencies {
    implementation helix.api.delete.springboot.starter
}

build.gradle.kts

Kotlin DSL

dependencies {
    implementation(helix.api.delete.springboot.starter)
}

Configuration

This starter uses the helix.delete-token property namespace.

Configuration for delete token service.

  • helix.delete-token.signing-key (String): Represents the property key used to specify the signing key for generating delete JWT (JSON Web Token) tokens. The signing key is used to sign the JWT, ensuring its integrity and authenticity during delete confirmation processes.
  • helix.delete-token.ttl (Long, default: 300): Represents the property key used to specify the expiration time (in seconds) of the JWT access token.