Restaurant365 · Example Payload

R365 Api Authenticate Example

RestaurantAccountingInventoryOperationsInvoicesReportingOData

R365 Api Authenticate Example is an example object payload from Restaurant365, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://yourcompany.restaurant365.com/APIv1/Authenticate",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "UserName": "vendor.integration",
      "Password": "your-password"
    }
  },
  "response": {
    "SessionId": "8f3c2b1a-0d4e-4a9c-9b21-7e2f5c8a1d44",
    "UserName": "vendor.integration",
    "BearerToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.bearer.token",
    "ResponseStatus": {}
  }
}