Neuer Handle anlegen
PUT
/domain/handle/create
Body Parameter (application/x-www-form-urlencoded)
| Name | Format | Beschreibung | Optional |
|---|---|---|---|
| gender | Geschlecht | — | |
| firstname | String | Vorname | — |
| lastname | String | Nachname | — |
| street | String | Straße | — |
| number | String | Hausnummer | — |
| zipcode | String | Postleitzahl | — |
| city | String | Stadt | — |
| region | String | Bundesland | — |
| countrycode | Ländercode, abrufbar via /domain/handle/countries Endpunkt | — | |
| String | E-Mail Adresse | — | |
| phone | String | Telefonnummer (optional, für die Registrierung von .de-Domains jedoch verpflichtend) |
Response (application/json)
200
{4 Eigenschaften
"status": "success",
"requestID": "d541d69e-5a5d-4a44-8437-9b5d2f5802ec",
"message": "Handle successfully created",
"data": {1 Eigenschaft
"handle": "FIRE24XX"
}
}
cURL
curl -X PUT 'https://live.fireapi.de/domain/handle/create' \ -H 'X-FIRE-APIKEY: YOUR-API-KEY' \ -H 'Content-Type: application/x-www-form-urlencoded' \ -d 'gender=VALUE&firstname=VALUE&lastname=VALUE&street=VALUE&number=VALUE&zipcode=VALUE&city=VALUE®ion=VALUE&countrycode=VALUE&email=VALUE&phone=VALUE'