You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Optional. When supplied and permitted for the tenant (feature flag / CSM arrangement), this value is used as the TRLink integration identifier instead of a server-generated UUID. If omitted, the API generates a UUID. If supplied when the tenant is not permitted to set a custom id, the request fails with 400. Contact your CSM if you need a custom integration id.
[optional]
Example
fromfireblocks.models.tr_link_create_integration_requestimportTRLinkCreateIntegrationRequest# TODO update the JSON string belowjson="{}"# create an instance of TRLinkCreateIntegrationRequest from a JSON stringtr_link_create_integration_request_instance=TRLinkCreateIntegrationRequest.from_json(json)
# print the JSON string representation of the objectprint(TRLinkCreateIntegrationRequest.to_json())
# convert the object into a dicttr_link_create_integration_request_dict=tr_link_create_integration_request_instance.to_dict()
# create an instance of TRLinkCreateIntegrationRequest from a dicttr_link_create_integration_request_from_dict=TRLinkCreateIntegrationRequest.from_dict(tr_link_create_integration_request_dict)