Skip to documentation
AppLaunchFlow/ Docs

API reference / ASO copy

Save ASO copy

PUT/api/v1/aso/copy

Authorization

Send your API key or MCP OAuth token in the Authorization: Bearer header. Active or trialing Unlimited is required.

Required permission content:write

Every mutation requires JSON and an Idempotency-Key. Reuse the same key and exact input when retrying.

Parameters

Idempotency-Keyheaderrequired

string

Persist this key for retries. Reusing it with changed input returns 409. Receipts are retained for at least 24 hours.

min length: 8 · max length: 128

Request body

application/json

generationIdbodyrequired

string · uuid

variantIdbodyoptional

string | null

asoCopybodyrequired

object

View complete request schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "generationId": {
      "type": "string",
      "format": "uuid",
      "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"
    },
    "variantId": {
      "anyOf": [
        {
          "type": "string",
          "format": "uuid",
          "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"
        },
        {
          "type": "null"
        }
      ]
    },
    "asoCopy": {
      "type": "object",
      "properties": {
        "promotionalText": {
          "type": "string",
          "maxLength": 170
        },
        "shortDescription": {
          "type": "string",
          "maxLength": 170
        },
        "fullDescription": {
          "type": "string",
          "maxLength": 4000
        },
        "keywords": {
          "type": "string",
          "maxLength": 100
        },
        "insights": {
          "type": "object",
          "properties": {
            "promotionalText": {
              "type": "object",
              "properties": {
                "explanation": {
                  "type": "string",
                  "description": "Why this copy field is effective and conversion-focused"
                },
                "competitorAnalysis": {
                  "type": "string",
                  "description": "How this copy compares to competitor strategies and what differentiates it"
                },
                "strengths": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  },
                  "description": "Key strengths of this copy (3-5 specific elements that make it effective)"
                }
              },
              "required": [
                "explanation",
                "competitorAnalysis",
                "strengths"
              ],
              "description": "Insights explaining why the promotional text is effective"
            },
            "shortDescription": {
              "type": "object",
              "properties": {
                "explanation": {
                  "type": "string",
                  "description": "Why this copy field is effective and conversion-focused"
                },
                "competitorAnalysis": {
                  "type": "string",
                  "description": "How this copy compares to competitor strategies and what differentiates it"
                },
                "strengths": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  },
                  "description": "Key strengths of this copy (3-5 specific elements that make it effective)"
                }
              },
              "required": [
                "explanation",
                "competitorAnalysis",
                "strengths"
              ],
              "description": "Insights explaining why the short description is effective"
            },
            "fullDescription": {
              "type": "object",
              "properties": {
                "explanation": {
                  "type": "string",
                  "description": "Why this copy field is effective and conversion-focused"
                },
                "competitorAnalysis": {
                  "type": "string",
                  "description": "How this copy compares to competitor strategies and what differentiates it"
                },
                "strengths": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  },
                  "description": "Key strengths of this copy (3-5 specific elements that make it effective)"
                }
              },
              "required": [
                "explanation",
                "competitorAnalysis",
                "strengths"
              ],
              "description": "Insights explaining why the full description is effective"
            },
            "keywords": {
              "type": "object",
              "properties": {
                "explanation": {
                  "type": "string",
                  "description": "Why these keywords were chosen and their strategic value"
                },
                "searchVolume": {
                  "type": "string",
                  "description": "Estimated search potential or why these keywords were chosen over alternatives"
                },
                "strengths": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  },
                  "description": "Key strengths of this keyword selection (3-5 specific elements that make it effective)"
                }
              },
              "required": [
                "explanation",
                "searchVolume",
                "strengths"
              ],
              "description": "Insights explaining why the keyword selection is effective"
            }
          },
          "required": [
            "promotionalText",
            "shortDescription",
            "fullDescription",
            "keywords"
          ],
          "description": "Insights explaining why each copy field is effective, including explanations, competitor analysis, and key strengths"
        },
        "category": {
          "type": "string"
        },
        "subcategory": {
          "type": "string"
        }
      },
      "required": [
        "promotionalText",
        "shortDescription",
        "fullDescription",
        "keywords",
        "insights",
        "category",
        "subcategory"
      ],
      "additionalProperties": {}
    }
  },
  "required": [
    "generationId",
    "asoCopy"
  ],
  "additionalProperties": false
}

Request example

Set ALF_API_URL to https://dashboard.applaunchflow.com/api/v1 and ALF_API_KEY to your key. Replace sample IDs with your project’s values. Use a new ALF_REQUEST_ID for each new operation.

cURL
curl --request PUT \
  --url "$ALF_API_URL/aso/copy" \
  --header "Authorization: Bearer $ALF_API_KEY" \
  --header "Content-Type: application/json" \
  --header "Idempotency-Key: $ALF_REQUEST_ID" \
  --data '{
  "generationId": "11111111-1111-4111-8111-111111111111",
  "asoCopy": {
    "promotionalText": "string",
    "shortDescription": "string",
    "fullDescription": "string",
    "keywords": "string",
    "insights": {
      "promotionalText": {
        "explanation": "string",
        "competitorAnalysis": "string",
        "strengths": [
          "string"
        ]
      },
      "shortDescription": {
        "explanation": "string",
        "competitorAnalysis": "string",
        "strengths": [
          "string"
        ]
      },
      "fullDescription": {
        "explanation": "string",
        "competitorAnalysis": "string",
        "strengths": [
          "string"
        ]
      },
      "keywords": {
        "explanation": "string",
        "searchVolume": "string",
        "strengths": [
          "string"
        ]
      }
    },
    "category": "string",
    "subcategory": "string"
  }
}'

This example shows the request structure. Some editor operations require additional query parameters that are not yet described in OpenAPI.

Response

Successful JSON responses wrap the result in data, with a request ID in meta.requestId.

successdatarequired

boolean

View response schema
{
  "type": "object",
  "required": [
    "data",
    "meta"
  ],
  "properties": {
    "data": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "type": "object",
      "properties": {
        "success": {
          "type": "boolean"
        }
      },
      "required": [
        "success"
      ],
      "additionalProperties": {}
    },
    "meta": {
      "type": "object",
      "required": [
        "requestId"
      ],
      "properties": {
        "requestId": {
          "type": "string",
          "format": "uuid"
        }
      }
    }
  }
}

Errors & retries

Errors use application/problem+json. Check the stable code and keep requestId when contacting support. Respect Retry-After on 429 responses.

See error handling and idempotency →