Authorization: Bearer ********************{
    "data": {
        "attributes": {
            "mail": "mail@example.com",
            "role": "developer"
        }
    }
}curl --location --request POST 'https://api.servebolt.io/v1/bolts/1234/invite' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "data": {
        "attributes": {
            "mail": "mail@example.com",
            "role": "developer"
        }
    }
}'