Neues Thema über die API kann nicht erstellt werden

Ich habe ein API-Token über die API erstellt. Meine Antwort nach der Auth-Umleitung sieht so aus:
{
api = 4;
key = bd0553a26566b6ace74869ad6042fc22;
nonce = “5A3D2DD2-D6E3-4539-BDE1-3F114B9EC3A1”;
push = 0;
}

Anschließend versuche ich, einen neuen Beitrag über die API zu erstellen, wie folgt:

---REQUEST------------------
URL: https://myserver.com/posts.json
METHOD: POST
Api-Key: bd0553a26566b6ace74869ad6042fc22
Content-Type: application/json
Api-Username: AndrewB
BODY: {
  "title" : "Test topic",
  "raw" : "This is posted from the API",
  "category" : 0
}
----------------------------

Dabei erhalte ich einen Fehler wegen ungültigem Zugriff:

---RESPONSE------------------
URL: https://myserver.com/posts.json
MIMEType: application/json
Status Code: 403
Content-Type: application/json; charset=utf-8
x-runtime: 0.006244
Content-Encoding: gzip
Server: nginx
x-download-options: noopen
x-xss-protection: 1; mode=block
x-permitted-cross-domain-policies: none
referrer-policy: strict-origin-when-cross-origin
Date: Tue, 31 Mar 2020 17:37:54 GMT
x-request-id: 82b293d8-a609-42b1-8338-dcbdcbc72a61
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
Vary: Accept-Encoding
Response Data: {"errors":["You are not permitted to view the requested resource. The API username or key is invalid."],"error_type":"invalid_access"}
Response JSON: {
    "error_type" = "invalid_access";
    errors =     (
        "You are not permitted to view the requested resource. The API username or key is invalid."
    );
}
----------------------------

Das Benutzerkonto sieht so aus:

API-Bereich für Administratoren:

Fehlt mir hier etwas Offensichtliches? Jede Hilfe wird geschätzt!