1. Account
Fodimi
  • Clients
    • Get list
      GET
    • Create client
      GET
    • Get client orders list
      GET
    • Get client history
      GET
    • Update client details
      PUT
    • Create client
      GET
    • Create client
      POST
  • Orders
    • Get Order Details
      GET
    • Get orders list
      GET
    • Change order status
      PUT
    • Create an order
      POST
    • Quote an order
      POST
  • Menu
    • Get menu
      GET
    • Update Product visibility
      PUT
    • Bulk update menu translations
      PATCH
    • Update product translations
      PATCH
    • Update category translations
      PATCH
    • Update addon group translations
      PATCH
    • Update addon translations
      PATCH
    • Update variant group translations
      PATCH
    • Update variant translations
      PATCH
  • Webhooks
    • Order status changed
    • Order closed
    • Order canceled
    • Client created
    • Client details changed
    • Client points changed
    • Delivery status changed
  • Webhooks (sent by Fodimi)
    • Order status changed
    • Order closed
    • Order canceled
    • Client created
    • Client details changed
    • Client points changed
    • Delivery status changed
  • Account
    • Who am I
      GET
  • Schemas
    • Clients
      • Client list response
      • Client details response
      • Client history logs
    • Orders
      • Order list response
      • Order response
      • Order detailed response
      • Order product response
    • Menu translations section result
    • Menu translations not found
    • Validation error
  1. Account

Who am I

GET
/me
Returns the company behind the key, what the key may do and which locations it can reach.
Call it first in any integration: restaurants[].uid is what every /menu/{restaurantUid} endpoint expects,
so nobody has to send you location ids by hand.
Requires no ability — any valid key can call it.

Request

None

Responses

🟢200OK
application/json
Company, key and reachable locations.
Bodyapplication/json

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://fodimi.pl/api_public/me'
Response Response Example
200 - Success Example
{
    "uid": "1623978b-9ac9-400a-b6a0-2b7b8f97bb64",
    "name": "Bon Tacos",
    "key": {
        "name": "CRM GoHighLevel",
        "abilities": [
            "orders:read",
            "clients:read"
        ],
        "expires_at": null,
        "legacy": false
    },
    "restaurants": [
        {
            "uid": "b06a191d-8e22-4707-8c1e-9b5119cf4461",
            "name": "Lokal 1"
        }
    ]
}
Modified at 2026-09-12 08:45:20
Previous
Delivery status changed
Next
Client list response
Built with