POST api/Import/KeySeeds
Imports provided key seeds.
Request Information
URI Parameters
None.
Body Parameters
The key seeds to import.
Collection of KeySeedToImport| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
The ID of the key seed. If not specified, it will be generated. |
globally unique identifier |
None. |
| Data |
The key seed itself. |
Collection of byte |
Required Max length: 30 Min length: 30 |
Request Formats
application/json, text/json
Sample:
[
{
"Id": "380e4f9f-5834-4aa3-89cc-9f2071c571ea",
"Data": "QEA="
},
{
"Id": "380e4f9f-5834-4aa3-89cc-9f2071c571ea",
"Data": "QEA="
}
]
Response Information
Resource Description
None.
Status Codes
All HTTP status codes must be expected, but the following status codes are the most probable:
- OK (200) - Key seeds are successfully imported.
- BadRequest (400) - Provided data is invalid.