# Storage Bridge Node Registration

This file outlines the Flashback API's node registration and organization key management features. The node registration system allows bridge nodes to register with the platform and manage cryptographic keys for secure communication. Organization keys are used for authenticating and authorizing node operations.

{% hint style="info" %}
To perform organization key operations, you must be authenticated by means of one of the following methods: [BearerAuth](/support-reference/platform-api-reference.md#http-bearer-authentication). Node registration operations do not require authentication as they use cryptographic signatures for verification.
{% endhint %}

## Node Registration API Calls <a href="#flashback-api-node-registration" id="flashback-api-node-registration"></a>

| Method                                                 | API Reference                                                                                                          | Description                                                                              |
| ------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- |
| <mark style="color:orange;">`POST`</mark>`/register`   | [**post\_\_register**](/support-reference/platform-api-reference/storage-apis/node-registration/post__register.md)     | Register a new bridge node with the platform using cryptographic signature verification. |
| <mark style="color:orange;">`POST`</mark>`/unregister` | [**post\_\_unregister**](/support-reference/platform-api-reference/storage-apis/node-registration/post__unregister.md) | Unregister a bridge node from the platform.                                              |

## Organization Key Management API Calls <a href="#flashback-api-org-keys" id="flashback-api-org-keys"></a>

| Method                                                                      | API Reference                                                                                                                                                           | Description                                                  |
| --------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------ |
| <mark style="color:orange;">`POST`</mark>`/organization/{orgId}/key`        | [**post\_\_organization\_-orgid-\_key**](/support-reference/platform-api-reference/storage-apis/node-registration/post__organization_-orgid-_key.md)                    | Generate a new RSA key pair for organization authentication. |
| <mark style="color:green;">`GET`</mark>`/organization/{orgId}/key`          | [**get\_\_organization\_-orgid-\_key**](/support-reference/platform-api-reference/storage-apis/node-registration/get__organization_-orgid-_key.md)                      | List all organization keys with associated node information. |
| <mark style="color:red;">`DELETE`</mark>`/organization/{orgId}/key`         | [**delete\_\_organization\_-orgid-\_key**](/support-reference/platform-api-reference/storage-apis/node-registration/delete__organization_-orgid-_key.md)                | Delete all organization keys for the specified organization. |
| <mark style="color:red;">`DELETE`</mark>`/organization/{orgId}/key/{idKey}` | [**delete\_\_organization\_-orgid-\_key\_-keyid**](/support-reference/platform-api-reference/storage-apis/node-registration/delete__organization_-orgid-_key_-keyid.md) | Delete a specific organization key by its ID.                |

## Organization Node Management API Calls <a href="#flashback-api-org-nodes" id="flashback-api-org-nodes"></a>

| Method                                                                        | API Reference                                                                                                                                                               | Description                                                          |
| ----------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------- |
| <mark style="color:red;">`DELETE`</mark>`/organization/{orgId}/node/{nodeId}` | [**delete\_\_organization\_-orgid-\_node\_-nodeid**](/support-reference/platform-api-reference/storage-apis/node-registration/delete__organization_-orgid-_node_-nodeid.md) | Soft delete a node from the organization (OWNER/ADMINISTRATOR only). |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.flashback.tech/support-reference/platform-api-reference/storage-apis/node-registration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
