curl --request GET \
--url https://{tenantDomain}/api/v2/actions/modules/{id}/versions/{versionId} \
--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"
}Retrieve the details of a specific, immutable version of an Actions Module.
curl --request GET \
--url https://{tenantDomain}/api/v2/actions/modules/{id}/versions/{versionId} \
--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 unique ID of the module.
The unique ID of the module version to retrieve.
The module version was retrieved.
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.
このページは役に立ちましたか?