Management API
Edit App
PUT
/v1/app/:idProgrammatically update an existing App's name within a Meebly organization.
Definition
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The ID of the app to update |
Headers
bash
X-Access-Token: YOUR_ACCESS_TOKENBody Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
organizationId | string | Yes | The ID of the organization that owns this app. Must match the access token's organization. |
name | string | No | New 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