PUT
/
organization
curl --request PUT \
  --url https://api.plumaa.id/rest/v1/organization \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "input": {
    "id": "<any>",
    "name": "<string>",
    "emailAddress": "<any>",
    "logo": "<string>",
    "policies": {}
  }
}'
{
  "id": "<any>",
  "name": "<string>",
  "logo": "<any>",
  "emailAddress": "<any>",
  "quota": {
    "id": "<any>",
    "API": true,
    "groupedNOM151": 123,
    "nom151": 123
  },
  "policies": {
    "signatureRequest": {
      "conservation": "NOM151"
    }
  },
  "createdAt": "<any>",
  "updatedAt": "<any>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

input
object
required

Organization update input.

Body

application/json

Response

200 - application/json

An Organization represents an tenant in the Plumaa infrastructure. All paid resources are associated with an Organization. Organizations can have multiple certificate members.