Management API

Edit App

PUT/v1/app/:id

Programmatically update an existing App's name within a Meebly organization.

Definition

Path Parameters

ParameterTypeRequiredDescription
idstringYesThe ID of the app to update

Headers

bash
X-Access-Token: YOUR_ACCESS_TOKEN

Body Parameters

ParameterTypeRequiredDescription
organizationIdstringYesThe ID of the organization that owns this app. Must match the access token's organization.
namestringNoNew display name for the app

Response

Returns 200 OK with the updated app object.

json
{
  "id": "app_def456",
  "name": "Acme Corp — Renamed",
  "organizationId": "org_abc123",
  "createdAt": "2025-01-15T12:00:00Z"
}

Sample Request

bash
curl -X PUT "https://api.meebly.ai/v1/app/app_def456" \
  -H "Content-Type: application/json" \
  -H "X-Access-Token: YOUR_ACCESS_TOKEN" \
  -d '{
    "organizationId": "org_abc123",
    "name": "Acme Corp — Renamed"
  }'
Last updated: March 2026Report an issue