Actions58
- Applications Actions
- Components Actions
- Brands Actions
- Documents Actions
- Weblinks Actions
- Manufacturers Actions
- Catalogs Actions
- Download Actions
- Variations Actions
- Categories Actions
- Upload Actions
- Jobs Actions
Overview
This node interacts with the iTwin Component Center API, specifically allowing users to delete a component variation. It is useful in scenarios where you need to programmatically manage component versions or variations within the iTwin platform, such as cleaning up outdated or incorrect component variations.
For example, if you have a component with multiple variations and want to remove a specific variation by its ID, this node operation facilitates that deletion via the API.
Properties
| Name | Meaning |
|---|---|
| Component ID | The unique identifier of the component from which a variation will be deleted. |
| Variation ID | The unique identifier of the variation to delete from the specified component. |
Output
The output JSON contains the result of the delete operation. Typically, it will include confirmation of the deletion or relevant status information returned by the iTwin Component Center API. If the operation fails and "Continue On Fail" is enabled, the output will contain an error message describing the failure.
No binary data output is expected from this operation.
Dependencies
- Requires an API key credential for authenticating with the iTwin Component Center API.
- The node depends on the
iTwinOAuth2Apicredential for OAuth2 authentication. - Internet access to reach the iTwin Component Center API endpoints.
- The node uses an internal interpreter module (
ComponentCenterOpenApiInterpreter) to map operations to API calls.
Troubleshooting
- Common issues:
- Invalid or missing Component ID or Variation ID parameters will cause the operation to fail.
- Authentication errors if the OAuth2 credentials are not configured correctly.
- Network connectivity issues preventing access to the iTwin API.
- Error messages:
"Unknown operation: <operation>"indicates the requested operation name is not recognized; ensure the operation parameter is set to "delete-component-variation".- API errors returned from the iTwin service will be included in the output if "Continue On Fail" is enabled.
- Resolution tips:
- Verify that both Component ID and Variation ID are correct and exist in the iTwin Component Center.
- Check OAuth2 credentials and refresh tokens if necessary.
- Ensure network connectivity and API endpoint availability.
Links and References
- iTwin Developer Documentation
- iTwin Component Center API documentation (linked from the above)