All URIs are relative to https://api.fireblocks.io/v1
Method | HTTP request | Description |
---|---|---|
get_active_policy | GET /tap/active_policy | Get the active policy and its validation |
get_draft | GET /tap/draft | Get the active draft |
publish_draft | POST /tap/draft | Send publish request for a certain draft id |
publish_policy_rules | POST /tap/publish | Send publish request for a set of policy rules |
update_draft | PUT /tap/draft | Update the draft with a new set of rules |
PolicyAndValidationResponse get_active_policy()
Get the active policy and its validation
Returns the active policy and its validation.
Note: These endpoints are currently in beta and might be subject to changes. If you want to participate and learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success Manager or send an email to [email protected].
from fireblocks.models.policy_and_validation_response import PolicyAndValidationResponse
from fireblocks.client import Fireblocks
from fireblocks.client_configuration import ClientConfiguration
from fireblocks.exceptions import ApiException
from fireblocks.base_path import BasePath
from pprint import pprint
# load the secret key content from a file
with open('your_secret_key_file_path', 'r') as file:
secret_key_value = file.read()
# build the configuration
configuration = ClientConfiguration(
api_key="your_api_key",
secret_key=secret_key_value,
base_path=BasePath.Sandbox, # or set it directly to a string "https://sandbox-api.fireblocks.io/v1"
)
# Enter a context with an instance of the API client
with Fireblocks(configuration) as fireblocks:
try:
# Get the active policy and its validation
api_response = fireblocks.policy_editor_beta.get_active_policy().result()
print("The response of PolicyEditorBetaApi->get_active_policy:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling PolicyEditorBetaApi->get_active_policy: %s\n" % e)
This endpoint does not need any parameter.
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | A policy object | * X-Request-ID - |
0 | Error Response | * X-Request-ID - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
DraftReviewAndValidationResponse get_draft()
Get the active draft
Returns the active draft and its validation.
Note: These endpoints are currently in beta and might be subject to changes. If you want to participate and learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success Manager or send an email to [email protected].
from fireblocks.models.draft_review_and_validation_response import DraftReviewAndValidationResponse
from fireblocks.client import Fireblocks
from fireblocks.client_configuration import ClientConfiguration
from fireblocks.exceptions import ApiException
from fireblocks.base_path import BasePath
from pprint import pprint
# load the secret key content from a file
with open('your_secret_key_file_path', 'r') as file:
secret_key_value = file.read()
# build the configuration
configuration = ClientConfiguration(
api_key="your_api_key",
secret_key=secret_key_value,
base_path=BasePath.Sandbox, # or set it directly to a string "https://sandbox-api.fireblocks.io/v1"
)
# Enter a context with an instance of the API client
with Fireblocks(configuration) as fireblocks:
try:
# Get the active draft
api_response = fireblocks.policy_editor_beta.get_draft().result()
print("The response of PolicyEditorBetaApi->get_draft:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling PolicyEditorBetaApi->get_draft: %s\n" % e)
This endpoint does not need any parameter.
DraftReviewAndValidationResponse
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | A draft validation response object | * X-Request-ID - |
0 | Error Response | * X-Request-ID - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
PublishResult publish_draft(publish_draft_request, idempotency_key=idempotency_key)
Send publish request for a certain draft id
Send publish request of certain draft id and returns the response.
Note: These endpoints are currently in beta and might be subject to changes. If you want to participate and learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success Manager or send an email to [email protected].
from fireblocks.models.publish_draft_request import PublishDraftRequest
from fireblocks.models.publish_result import PublishResult
from fireblocks.client import Fireblocks
from fireblocks.client_configuration import ClientConfiguration
from fireblocks.exceptions import ApiException
from fireblocks.base_path import BasePath
from pprint import pprint
# load the secret key content from a file
with open('your_secret_key_file_path', 'r') as file:
secret_key_value = file.read()
# build the configuration
configuration = ClientConfiguration(
api_key="your_api_key",
secret_key=secret_key_value,
base_path=BasePath.Sandbox, # or set it directly to a string "https://sandbox-api.fireblocks.io/v1"
)
# Enter a context with an instance of the API client
with Fireblocks(configuration) as fireblocks:
publish_draft_request = fireblocks.PublishDraftRequest() # PublishDraftRequest |
idempotency_key = 'idempotency_key_example' # str | A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours. (optional)
try:
# Send publish request for a certain draft id
api_response = fireblocks.policy_editor_beta.publish_draft(publish_draft_request, idempotency_key=idempotency_key).result()
print("The response of PolicyEditorBetaApi->publish_draft:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling PolicyEditorBetaApi->publish_draft: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
publish_draft_request | PublishDraftRequest | ||
idempotency_key | str | A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours. | [optional] |
No authorization required
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
201 | A policy publish result object | * X-Request-ID - |
0 | Error Response | * X-Request-ID - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
PublishResult publish_policy_rules(policy_rules, idempotency_key=idempotency_key)
Send publish request for a set of policy rules
Send publish request of set of policy rules and returns the response.
Note: These endpoints are currently in beta and might be subject to changes. If you want to participate and learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success Manager or send an email to [email protected].
from fireblocks.models.policy_rules import PolicyRules
from fireblocks.models.publish_result import PublishResult
from fireblocks.client import Fireblocks
from fireblocks.client_configuration import ClientConfiguration
from fireblocks.exceptions import ApiException
from fireblocks.base_path import BasePath
from pprint import pprint
# load the secret key content from a file
with open('your_secret_key_file_path', 'r') as file:
secret_key_value = file.read()
# build the configuration
configuration = ClientConfiguration(
api_key="your_api_key",
secret_key=secret_key_value,
base_path=BasePath.Sandbox, # or set it directly to a string "https://sandbox-api.fireblocks.io/v1"
)
# Enter a context with an instance of the API client
with Fireblocks(configuration) as fireblocks:
policy_rules = fireblocks.PolicyRules() # PolicyRules |
idempotency_key = 'idempotency_key_example' # str | A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours. (optional)
try:
# Send publish request for a set of policy rules
api_response = fireblocks.policy_editor_beta.publish_policy_rules(policy_rules, idempotency_key=idempotency_key).result()
print("The response of PolicyEditorBetaApi->publish_policy_rules:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling PolicyEditorBetaApi->publish_policy_rules: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
policy_rules | PolicyRules | ||
idempotency_key | str | A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours. | [optional] |
No authorization required
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
201 | A policy publish result object | * X-Request-ID - |
0 | Error Response | * X-Request-ID - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
DraftReviewAndValidationResponse update_draft(policy_rules, idempotency_key=idempotency_key)
Update the draft with a new set of rules
Update the draft and return its validation.
Note: These endpoints are currently in beta and might be subject to changes. If you want to participate and learn more about the Fireblocks TAP, please contact your Fireblocks Customer Success Manager or send an email to [email protected].
from fireblocks.models.draft_review_and_validation_response import DraftReviewAndValidationResponse
from fireblocks.models.policy_rules import PolicyRules
from fireblocks.client import Fireblocks
from fireblocks.client_configuration import ClientConfiguration
from fireblocks.exceptions import ApiException
from fireblocks.base_path import BasePath
from pprint import pprint
# load the secret key content from a file
with open('your_secret_key_file_path', 'r') as file:
secret_key_value = file.read()
# build the configuration
configuration = ClientConfiguration(
api_key="your_api_key",
secret_key=secret_key_value,
base_path=BasePath.Sandbox, # or set it directly to a string "https://sandbox-api.fireblocks.io/v1"
)
# Enter a context with an instance of the API client
with Fireblocks(configuration) as fireblocks:
policy_rules = fireblocks.PolicyRules() # PolicyRules |
idempotency_key = 'idempotency_key_example' # str | A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours. (optional)
try:
# Update the draft with a new set of rules
api_response = fireblocks.policy_editor_beta.update_draft(policy_rules, idempotency_key=idempotency_key).result()
print("The response of PolicyEditorBetaApi->update_draft:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling PolicyEditorBetaApi->update_draft: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
policy_rules | PolicyRules | ||
idempotency_key | str | A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours. | [optional] |
DraftReviewAndValidationResponse
No authorization required
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | A draft validation response object | * X-Request-ID - |
0 | Error Response | * X-Request-ID - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]