Unable to verify organization

To get above JSON content you can do these steps.

Preparation:

  • Make sure you have installed curl and jq installed on your system
  • Active internet connection
  • Account with unable to verify or declined (somehow) organization status
  1. Open browser and open https://platform.openai.com/settings/organization/general
  2. Login to OpenAI with account which has a declined or unable to verify status.
  3. Open browser DevTool like Chrome DevTool (F12 on Windows, Option+Command+I on macOS)
  4. Open Network tab
  5. Filter by /login path and see response POST response
  6. Access response json path user.session.sensitive_id and it contains Session Authorization
  7. Copy Organization ID from Dashboard (step 1) and Session Authorization (from step 6)
  8. Try command below
curl --location 'https://api.openai.com/v1/inquiries' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer $SESSION_AUTH' \
--header 'OpenAI-Organization: $ORGANIZATION_ID' | jq

FAQ:

Where did i get link to https://api.openai.com/v1/inquiries

  • I got it from browser DevTools from new account with unverified status

Why do i need those debugging?

  • I need access to modern models and i’m can verify my organization

Why i need new models?

  • Coding, building website and finish some my open-source projects

What if still can’t verify or OpenAI can’t help here?

  • I would like to ask refund to use other AI/LLM provider to finish my task

Related issues