Notarization Request not found after 12 hours

Made a notarization request a few hours ago and woke up to check the history and it's no longer available. Not rejected/accepted just not found. I have gone ahead to make another request but I have no confidence because I expect the same thing to happen again. Any guidance?

See logs below:

daramfon@MacBook-Pro-3 frontend % xcrun notarytool history --apple-id "$APPLE_ID" --password "$APPLE_APP_SPECIFIC_PASSWORD" --team-id "$APPLE_TEAM_ID"
Successfully received submission history.
  history
    --------------------------------------------------
    createdDate: 2026-02-20T23:53:14.066Z
    id: 6f2fadc0-2e8f-4331-a253-68f81334ebc6
    name: Speakeasy AI-0.1.0-arm64.zip
    status: In Progress
    --------------------------------------------------
    createdDate: 2026-02-20T23:47:12.897Z
    id: 435aec4f-5356-49a5-898d-48aaafb7949f
    name: Speakeasy AI.zip
    status: In Progress
    --------------------------------------------------
    createdDate: 2026-02-20T22:35:23.947Z
    id: 95896757-873a-4e54-a527-03dc767c9cb5
    name: Speakeasy AI.zip
    status: In Progress

daramfon@MacBook-Pro-3 frontend % xcrun notarytool history --apple-id "$APPLE_ID" --password "$APPLE_APP_SPECIFIC_PASSWORD" --team-id "$APPLE_TEAM_ID"
No submission history.
daramfon@MacBook-Pro-3 frontend % xcrun notarytool info 6f2fadc0-2e8f-4331-a253-68f81334ebc6 --apple-id "$APPLE_ID" --password "$APPLE_APP_SPECIFIC_PASSWORD" --team-id "$APPLE_TEAM_ID"
Submission does not exist or does not belong to your team.
  id: 6f2fadc0-2e8f-4331-a253-68f81334ebc6

Happened again for my second request. Need to get some help figuring this out. Submission id this time was 10b9e47a-f7e2-4a2d-b1d5-a4f1ef7b16cd

daramfon@MacBook-Pro-3 frontend % xcrun notarytool info 10b9e47a-f7e2-4a2d-b1d5-a4f1ef7b16cd --apple-id "$APPLE_ID" --password "$APPLE_APP_SPECIFIC_PASSWORD" --team-id "$APPLE_TEAM_ID"

daramfon@MacBook-Pro-3 frontend % xcrun notarytool store-credentials "speakeasy-notary" --apple-id "$APPLE_ID" --password "$APPLE_APP_SPECIFIC_PASSWORD" --team-id "$APPLE_TEAM_ID"

This process stores your credentials securely in the Keychain. You reference these credentials later using a profile name.

Validating your credentials...
Success. Credentials validated.
Credentials saved to Keychain.
To use them, specify `--keychain-profile "speakeasy-notary"`
daramfon@MacBook-Pro-3 frontend % for i in {1..6}; do echo "---- $(date)"; xcrun notarytool history --keychain-profile "speakeasy-notary"; xcrun notarytool info 10b9e47a-f7e2-4a2d-b1d5-a4f1ef7b16cd --keychain-profile "speakeasy-notary"; sleep 20; done
---- Sat Feb 21 20:21:46 EST 2026
No submission history.
Submission does not exist or does not belong to your team.
  id: 10b9e47a-f7e2-4a2d-b1d5-a4f1ef7b16cd
---- Sat Feb 21 20:22:07 EST 2026
No submission history.
Submission does not exist or does not belong to your team.
  id: 10b9e47a-f7e2-4a2d-b1d5-a4f1ef7b16cd
---- Sat Feb 21 20:22:29 EST 2026
No submission history.
Submission does not exist or does not belong to your team.
  id: 10b9e47a-f7e2-4a2d-b1d5-a4f1ef7b16cd
---- Sat Feb 21 20:22:50 EST 2026
No submission history.
Submission does not exist or does not belong to your team.
  id: 10b9e47a-f7e2-4a2d-b1d5-a4f1ef7b16cd
---- Sat Feb 21 20:23:11 EST 2026
No submission history.
Submission does not exist or does not belong to your team.
  id: 10b9e47a-f7e2-4a2d-b1d5-a4f1ef7b16cd
---- Sat Feb 21 20:23:33 EST 2026
No submission history.
Submission does not exist or does not belong to your team.
  id: 10b9e47a-f7e2-4a2d-b1d5-a4f1ef7b16cd
daramfon@MacBook-Pro-3 frontend % 

Lemme see if I understand you correctly:

  1. You submit a notarisation request with notarytool submit.
  2. While the request is in progress, you can see it in the notarytool history list.
  3. At some point it disappears from that list. Presumably this is when the notarisation request completes, but it’s hard to be sure about that from the outside.
  4. Once that happens, you can no longer get info about that request using notarytool info.

Is that right?

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Notarization Request not found after 12 hours
 
 
Q