openapi: 3.0.3 info: title: Flipdish API - Apps Accounts CatalogImages API version: v1.0 description: Flipdish Open API v1.0 — Apps operations. Flipdish is an online ordering and branded-app platform for restaurants and takeaways. This specification was derived from the official Flipdish Swagger document and grouped by resource domain. contact: name: Flipdish Support email: help@flipdish.com url: https://help.flipdish.com x-generated-from: https://api.flipdish.co/swagger/docs/v1.0 x-last-validated: '2026-06-02' servers: - url: https://api.flipdish.co description: Flipdish production API security: - oauth2: - api tags: - name: CatalogImages description: Operations for Catalog Images. paths: /api/v1.0/{appId}/catalog/images: post: tags: - CatalogImages summary: Flipdish Upload Catalog Image description: Upload Catalog Image via the Flipdish Open API v1.0 (POST /api/v1.0/{appId}/catalog/images). operationId: UploadCatalogImage parameters: - name: appId in: path description: The app id path parameter. required: true schema: type: string example: '500123' requestBody: required: true content: application/json: schema: type: object properties: Image: description: Catalog image type: string format: binary required: - Image examples: UploadCatalogImageRequestExample: summary: Default UploadCatalogImage request x-microcks-default: true value: Image: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/CatalogImage' examples: UploadCatalogImage200Example: summary: Default UploadCatalogImage 200 response x-microcks-default: true value: ImageUri: https://api.flipdish.co/example '400': description: BadRequest content: application/json: schema: $ref: '#/components/schemas/FlipdishError' examples: UploadCatalogImage400Example: summary: Default UploadCatalogImage 400 response x-microcks-default: true value: error: errorMessage: Invalid or missing parameters. errorCode: BadRequest details: Validation failed for field 'storeId'. '401': description: Authentication has been denied for this request. content: application/json: schema: $ref: '#/components/schemas/FlipdishError' examples: UploadCatalogImage401Example: summary: Default UploadCatalogImage 401 response x-microcks-default: true value: error: errorMessage: Invalid or missing parameters. errorCode: BadRequest details: Validation failed for field 'storeId'. '403': description: Successful authentication, but authorization has been denied for this request. content: application/json: schema: $ref: '#/components/schemas/FlipdishError' examples: UploadCatalogImage403Example: summary: Default UploadCatalogImage 403 response x-microcks-default: true value: error: errorMessage: Invalid or missing parameters. errorCode: BadRequest details: Validation failed for field 'storeId'. '500': description: Internal Server Error content: application/json: schema: $ref: '#/components/schemas/FlipdishError' examples: UploadCatalogImage500Example: summary: Default UploadCatalogImage 500 response x-microcks-default: true value: error: errorMessage: Invalid or missing parameters. errorCode: BadRequest details: Validation failed for field 'storeId'. security: - oauth2: - api x-microcks-operation: delay: 0 dispatcher: FALLBACK components: schemas: FlipdishError: type: object description: Standard Flipdish API error response. Errors are returned as a JSON object with a human-readable message and a programmatic error code (see https://developers.flipdish.com/docs/error-handling). properties: error: type: object description: Error detail object. properties: errorMessage: type: string description: Descriptive explanation of the issue. example: Invalid or missing parameters. errorCode: type: string description: Unique identifier for programmatic error handling. example: BadRequest details: type: string description: Additional context returned in non-production environments. example: Validation failed for field 'storeId'. CatalogImage: description: Catalog Image type: object properties: ImageUri: description: Unique catalog Item id type: string example: https://api.flipdish.co/example securitySchemes: oauth2: type: oauth2 description: OAuth 2.0. Implicit grant for first-party portal apps; client credentials grant for server-to-server App Store apps (exchange Client ID + Secret Key for a bearer access token). flows: implicit: authorizationUrl: https://api.flipdish.co/identity/connect/authorize scopes: api: Access to the Flipdish API clientCredentials: tokenUrl: https://api.flipdish.co/identity/connect/token scopes: api: Access to the Flipdish API