Create an M2M application
Machine-to-Machine (M2M)
You can use Properties in Kinde to add structured metadata to a Machine-to-Machine (M2M) application. These properties can store configuration or contextual data like region
, tier
, or model_version
.
This is useful for:
If you’re looking to include properties inside tokens, see Customize the claims of an M2M token with properties.
Before you can assign a property to an app, you need to define it.
tier
, region
, model_version
)Once saved, this property is now available across all M2M applications.
For example:
Property | Value |
---|---|
region | eu |
model_version | v2 |
tier | pro |
These values are stored with the app but are not included in tokens unless explicitly enabled.
These flags will be embedded in the token under the application_properties
claim:
{ "application_properties": { "region": { "v": "eu" }, "tier": { "v": "pro" } }}