curl --request POST \
--url https://{tenantDomain}/api/v2/actions/modules/{id}/versions \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"module_id": "<string>",
"version_number": 123,
"code": "<string>",
"secrets": [
{
"name": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"dependencies": [
{
"name": "<string>",
"version": "<string>"
}
],
"created_at": "2023-11-07T05:31:56Z"
}Creates a new immutable version of an Actions Module from the current draft version. This publishes the draft as a new version that can be referenced by actions, while maintaining the existing draft for continued development.
curl --request POST \
--url https://{tenantDomain}/api/v2/actions/modules/{id}/versions \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"module_id": "<string>",
"version_number": 123,
"code": "<string>",
"secrets": [
{
"name": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"dependencies": [
{
"name": "<string>",
"version": "<string>"
}
],
"created_at": "2023-11-07T05:31:56Z"
}Documentation Index
Fetch the complete documentation index at: https://auth0-quickstart-flutter-windows.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the action module to create a version for.
The action module version was created.
The unique ID for this version.
The ID of the parent module.
The sequential version number.
The exact source code that was published with this version.
Secrets available to this version (name and updated_at only, values never returned).
Show child attributes
Dependencies locked to this version.
Show child attributes
The timestamp when this version was created.
このページは役に立ちましたか?