Update Your Organization Details

  • PUT /api/customers/<customer_uuid>/ - Update your organization details.

    This endpoint allows you to update certain information about your organization, such as the contact details or address. You'll need the customer_uuid of your organization, which you can obtain from the "Get Your Organization Details" endpoint (10.1).

    Note: You can only update a limited set of fields. Refer to the WAYSCloud API documentation or contact support for details on the allowed fields.

    Request Example:

    PUT [https://api.wayscloud.services/api/customers/customer_uuid/](https://www.google.com/search?q=https://api.wayscloud.services/api/customers/customer_uuid/)
    Authorization: Token <your_api_token>
    Content-Type: application/json

    {
    "email": "[email address removed]",
    "phone_number": "+1-555-987-6543"
    }

    Status Codes:

    • 200 OK: The organization details were successfully updated.
    • 400 Bad Request: The request body contained invalid data or a field that is not allowed to be updated.
    • 401 Unauthorized: The user making the request is not authorized.
    • 404 Not Found: The specified organization customer_uuid does not exist.