POST api/Import/KeySeeds

Imports provided key seeds.

Request Information

URI Parameters

None.

Body Parameters

The key seeds to import.

Collection of KeySeedToImport
NameDescriptionTypeAdditional 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": "36b8af66-3604-4b6f-9499-312b25041668",
    "Data": "QEA="
  },
  {
    "Id": "36b8af66-3604-4b6f-9499-312b25041668",
    "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.