All error codes

network_name_taken

HTTP 409 A network with this name already exists

What happened

Another network in this project already carries this name. Names must be unique here because creating a network is asynchronous and returns no identifier - you find your network by name once the task finishes.

What to do

Send the request again with a different name. The refused attempt did not reserve your Idempotency-Key, so you may reuse the same key or pick a new one.

Retrying

Fix the request and send it again.

How it arrives

{
    "type": "https://docs.fiberax.com/errors/network_name_taken",
    "title": "A network with this name already exists",
    "status": 409,
    "code": "network_name_taken",
    "request_id": "a277dcd1ca652c65"
}

Branch your code on code, never on the wording of title.