An API that connects multiple Microsoft services, enabling data access and automation across platforms
You can update the state property via the PATCH method: https://learn.microsoft.com/en-us/graph/api/organization-update?view=graph-rest-beta&tabs=http
The caveat is that you need to use the /beta endpoint for this. And you need to make sure you're using the /organization/{id} endpoint, with Organization.ReadWrite.All permissions. Here's an example:
PATCH https://graph.microsoft.com/beta/organization/84841066-274d-4ec0-a5c1-276be684bdd3
{
"state":"blabla"
}