> For the complete documentation index, see [llms.txt](https://docs.flashback.tech/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.flashback.tech/support-reference/platform-api-reference/storage-apis/node-registration.md).

# Storage Bridge Node Registration

This file outlines the Flashgate 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="#flashgate-api-node-registration" id="flashgate-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="#flashgate-api-org-keys" id="flashgate-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="#flashgate-api-org-nodes" id="flashgate-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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
