Body Parameter (application/x-www-form-urlencoded)
Name | Format | Beschreibung | Optional |
---|---|---|---|
gender | Enum (handle.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 | Enum (handle.countrycode) | Ländercode, abrufbar via /domain/handle/countries Endpunkt | |
String | E-Mail Adresse |
Response (application/json)
{
"status": "success",
"requestID": "d541d69e-5a5d-4a44-8437-9b5d2f5802ec",
"message": "Handle successfully created",
"data": {
"handle": "FIRE24XX"
}
}
cURL
curl "https://live.fireapi.de/domain/handle/create" -X PUT -H "Content-Type: application/x-www-form-urlencoded" -H "X-FIRE-APIKEY: REPLACE_API-KEY" -d "gender=REPLACE_VALUE&firstname=REPLACE_VALUE&lastname=REPLACE_VALUE&street=REPLACE_VALUE&number=REPLACE_VALUE&zipcode=REPLACE_VALUE&city=REPLACE_VALUE®ion=REPLACE_VALUE&countrycode=REPLACE_VALUE&email=REPLACE_VALUE"
Anfrage testen