Actions145
- Account Actions
- Account Audit Actions
- Billing Entry Actions
- Call Detail Record Actions
- Carrier Actions
- Device Actions
- Device Template Actions
- Email Template Actions
- Feature Code Actions
- File Actions
- Flow Actions
- Flow Template Actions
- LCR Actions
- Mobile SIM Actions
- Number Port Actions
- Phone Number Actions
- Provision Actions
- Report Actions
- Reseller Actions
- SIP Trunk Actions
- Tariff Actions
- Tariff Code Actions
- Tariff Profile Actions
- Tenant Actions
- Tenant Audit Actions
- Transcription Actions
- User Actions
- Voice Actions
- Voice Mail Message Actions
Overview
The node interacts with the TeleFlow API to perform various operations on different resources, including Mobile SIMs. Specifically, for the Mobile SIM Update operation, it updates an existing Mobile SIM resource by its unique ID with specified fields.
This node is beneficial when you need to programmatically modify details of a Mobile SIM in TeleFlow, such as updating attributes or metadata associated with that SIM. For example, you might update the name or other custom fields of a Mobile SIM after provisioning or during lifecycle management.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the Mobile SIM resource to update. This is required. |
| Fields | A collection of field-value pairs specifying which fields of the Mobile SIM to update. You can add multiple fields, each with a name and corresponding value. |
Output
- The output is a JSON object representing the updated Mobile SIM resource as returned by the TeleFlow API.
- The structure of this JSON depends on the API response but typically includes the Mobile SIM's properties after the update.
- No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the TeleFlow API.
- The base URL for the API must be configured in the node credentials.
- The node uses HTTP PUT requests to update the Mobile SIM resource at the endpoint
/mobileSims/{id}.
Troubleshooting
- Missing ID Error: If the "ID" property is not provided, the node will throw an error stating that the ID is required for the update operation. Ensure you provide a valid Mobile SIM ID.
- API Request Failures: Errors from the TeleFlow API (e.g., invalid fields, authentication issues) will be logged and can cause the node to fail unless "Continue On Fail" is enabled.
- Field Validation: Make sure the field names and values you provide are valid according to the TeleFlow API schema for Mobile SIMs; otherwise, the update may be rejected.
Links and References
- TeleFlow API Documentation (Replace with actual URL if available)