# Create Store Create a new store for the authenticated user. Endpoint: POST /stores Version: 4 Security: bearerAuth ## Request fields (application/json): - `identifier` (string) Unique identifier for the store ## Response 200 fields (application/json): - `success` (boolean) Indicates whether the request was successful. - `store` (object) - `store.id` (integer) The unique identifier for the store. - `store.identifier` (string) The identifier associated with the store. - `store.created_at` (string) The date and time when the store was created. - `store.store_type` (string) The description of the store type. ## Response 401 fields (application/json): - `message` (string) Example: "Unauthenticated." ## Response 422 fields (application/json): - `success` (boolean) - `errors` (array) Example: ["The data you entered is invalid"] ## Response 500 fields (application/json): - `success` (boolean) - `errors` (array) Example: ["An unknown error occured"]