BP

bp Open Fleet Aral AppConnect (Pay@Pump) API

Digital fuel authorization at bp and Aral stations. Drivers authorize a fuel card directly from the vehicle, avoiding the till; the card is linked to a driver, vehicle or onboard computer and only the appropriate nozzle is released. Eight operations cover site search by coordinate and radius, site detail, payment-method registration and removal, and starting, checking and cancelling a fuelling session. Authorizations are tokenized and validated against existing fuel card controls including velocity limits and site restrictions. The only write surface on the platform, and it has no idempotency mechanism. Germany only. Published rate limit 100 requests per second.

Operations 8

POST /fueling
GET /fueling
PUT /fueling/cancel
GET /health-check
POST /payment-method
DELETE /payment-method
GET /sites
GET /sites/{siteId}

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/bp-fleet-aral-appconnect"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

bp-fleet-aral-appconnect-openapi.json Raw ↑
{
  "openapi": "3.0.1",
  "info": {
    "title": "Pay@Pump",
    "description": "A micro service for Pay@Pump",
    "version": "1"
  },
  "paths": {
    "/fueling": {
      "post": {
        "tags": [
          "Fueling"
        ],
        "parameters": [
          {
            "name": "api-version",
            "in": "header",
            "description": "The requested API version",
            "schema": {
              "type": "string",
              "default": "1"
            }
          },
          {
            "name": "X-APP-Client",
            "in": "header",
            "description": "Determines the calling client",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "X-Correlation-Id",
            "in": "header",
            "description": "A guid to track the request",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/pol_service_api.Request.Txo.InitiateFuelingRequest"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/pol_service_api.Request.Txo.InitiateFuelingRequest"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/pol_service_api.Request.Txo.InitiateFuelingRequest"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/pol_service_api.Request.Txo.InitiateFuelingRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Response.Txo.InitiateFuelingResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Response.Txo.InitiateFuelingResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Response.Txo.InitiateFuelingResponse"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "Fueling"
        ],
        "parameters": [
          {
            "name": "X-Transaction-Id",
            "in": "header",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "api-version",
            "in": "header",
            "description": "The requested API version",
            "schema": {
              "type": "string",
              "default": "1"
            }
          },
          {
            "name": "X-APP-Client",
            "in": "header",
            "description": "Determines the calling client",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "X-Correlation-Id",
            "in": "header",
            "description": "A guid to track the request",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Response.Events.GetEventsResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Response.Events.GetEventsResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Response.Events.GetEventsResponse"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/fueling/cancel": {
      "put": {
        "tags": [
          "Fueling"
        ],
        "parameters": [
          {
            "name": "X-Transaction-Id",
            "in": "header",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "api-version",
            "in": "header",
            "description": "The requested API version",
            "schema": {
              "type": "string",
              "default": "1"
            }
          },
          {
            "name": "X-APP-Client",
            "in": "header",
            "description": "Determines the calling client",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "X-Correlation-Id",
            "in": "header",
            "description": "A guid to track the request",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/System.Net.HttpStatusCode"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/System.Net.HttpStatusCode"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/System.Net.HttpStatusCode"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/health-check": {
      "get": {
        "tags": [
          "HealthCheck"
        ],
        "parameters": [
          {
            "name": "api-version",
            "in": "header",
            "description": "The requested API version",
            "schema": {
              "type": "string",
              "default": "1"
            }
          },
          {
            "name": "X-APP-Client",
            "in": "header",
            "description": "Determines the calling client",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "X-Correlation-Id",
            "in": "header",
            "description": "A guid to track the request",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/payment-method": {
      "post": {
        "tags": [
          "PaymentMethod"
        ],
        "parameters": [
          {
            "name": "api-version",
            "in": "header",
            "description": "The requested API version",
            "schema": {
              "type": "string",
              "default": "1"
            }
          },
          {
            "name": "X-APP-Client",
            "in": "header",
            "description": "Determines the calling client",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "X-Correlation-Id",
            "in": "header",
            "description": "A guid to track the request",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/pol_service_api.Request.Wallet.PostPaymentMethodRequest"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/pol_service_api.Request.Wallet.PostPaymentMethodRequest"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/pol_service_api.Request.Wallet.PostPaymentMethodRequest"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/pol_service_api.Request.Wallet.PostPaymentMethodRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Wallet.PostPaymentMethodResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Wallet.PostPaymentMethodResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Wallet.PostPaymentMethodResponse"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "PaymentMethod"
        ],
        "parameters": [
          {
            "name": "api-version",
            "in": "header",
            "description": "The requested API version",
            "schema": {
              "type": "string",
              "default": "1"
            }
          },
          {
            "name": "X-APP-Client",
            "in": "header",
            "description": "Determines the calling client",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "X-Correlation-Id",
            "in": "header",
            "description": "A guid to track the request",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json-patch+json": {
              "schema": {
                "$ref": "#/components/schemas/pol_service_api.Request.Wallet.DeletePaymentMethodRequest"
              }
            },
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/pol_service_api.Request.Wallet.DeletePaymentMethodRequest"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/pol_service_api.Request.Wallet.DeletePaymentMethodRequest"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/pol_service_api.Request.Wallet.DeletePaymentMethodRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/System.Net.HttpStatusCode"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/System.Net.HttpStatusCode"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/System.Net.HttpStatusCode"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/sites": {
      "get": {
        "tags": [
          "SiteDiscovery"
        ],
        "parameters": [
          {
            "name": "Lat",
            "in": "query",
            "required": true,
            "schema": {
              "maximum": 90,
              "minimum": -90,
              "type": "number",
              "format": "double"
            }
          },
          {
            "name": "Lng",
            "in": "query",
            "required": true,
            "schema": {
              "maximum": 180,
              "minimum": -180,
              "type": "number",
              "format": "double"
            }
          },
          {
            "name": "Radius",
            "in": "query",
            "required": true,
            "schema": {
              "maximum": 16000,
              "minimum": 0,
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "api-version",
            "in": "header",
            "description": "The requested API version",
            "schema": {
              "type": "string",
              "default": "1"
            }
          },
          {
            "name": "X-APP-Client",
            "in": "header",
            "description": "Determines the calling client",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "X-Correlation-Id",
            "in": "header",
            "description": "A guid to track the request",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Response.Dsp.GetNearbySitesResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Response.Dsp.GetNearbySitesResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Response.Dsp.GetNearbySitesResponse"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/sites/{siteId}": {
      "get": {
        "tags": [
          "SiteDiscovery"
        ],
        "parameters": [
          {
            "name": "siteId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "api-version",
            "in": "header",
            "description": "The requested API version",
            "schema": {
              "type": "string",
              "default": "1"
            }
          },
          {
            "name": "X-APP-Client",
            "in": "header",
            "description": "Determines the calling client",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "X-Correlation-Id",
            "in": "header",
            "description": "A guid to track the request",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Response.Dsp.GetSiteDetailsResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Response.Dsp.GetSiteDetailsResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Response.Dsp.GetSiteDetailsResponse"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/pol_service_api.Models.Common.ErrorResponse"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "System.Net.HttpStatusCode": {
        "enum": [
          100,
          101,
          102,
          103,
          200,
          201,
          202,
          203,
          204,
          205,
          206,
          207,
          208,
          226,
          300,
          301,
          302,
          303,
          304,
          305,
          306,
          307,
          308,
          400,
          401,
          402,
          403,
          404,
          405,
          406,
          407,
          408,
          409,
          410,
          411,
          412,
          413,
          414,
          415,
          416,
          417,
          421,
          422,
          423,
          424,
          426,
          428,
          429,
          431,
          451,
          500,
          501,
          502,
          503,
          504,
          505,
          506,
          507,
          508,
          510,
          511
        ],
        "type": "integer",
        "format": "int32"
      },
      "pol_service_api.Models.Common.ErrorResponse": {
        "type": "object",
        "properties": {
          "errors": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/pol_service_api.Models.Common.PolError"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "pol_service_api.Models.Common.PolError": {
        "type": "object",
        "properties": {
          "errorCode": {
            "type": "string",
            "nullable": true
          },
          "errorMessage": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "pol_service_api.Models.Dsp.Address": {
        "type": "object",
        "properties": {
          "addressLine1": {
            "type": "string",
            "nullable": true
          },
          "city": {
            "type": "string",
            "nullable": true
          },
          "stateCode": {
            "type": "string",
            "nullable": true
          },
          "postalCode": {
            "type": "string",
            "nullable": true
          },
          "workPhoneNumber": {
            "type": "string",
            "nullable": true
          },
          "latitude": {
            "type": "string",
            "nullable": true
          },
          "longitude": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "pol_service_api.Models.Dsp.FuelGrade": {
        "type": "object",
        "properties": {
          "available": {
            "type": "boolean"
          },
          "fuelType": {
            "type": "string",
            "nullable": true
          },
          "description": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "pol_service_api.Models.Dsp.Location": {
        "required": [
          "lat",
          "lng"
        ],
        "type": "object",
        "properties": {
          "lat": {
            "maximum": 90,
            "minimum": -90,
            "type": "number",
            "format": "double"
          },
          "lng": {
            "maximum": 180,
            "minimum": -180,
            "type": "number",
            "format": "double"
          }
        },
        "additionalProperties": false
      },
      "pol_service_api.Models.Dsp.NearbySite": {
        "type": "object",
        "properties": {
          "address": {
            "$ref": "#/components/schemas/pol_service_api.Models.Dsp.Address"
          },
          "distance": {
            "type": "string",
            "nullable": true
          },
          "siteId": {
            "type": "string",
            "nullable": true
          },
          "retailSiteConfig": {
            "$ref": "#/components/schemas/pol_service_api.Models.Dsp.RetailSite"
          }
        },
        "additionalProperties": false
      },
      "pol_service_api.Models.Dsp.PumpConfig": {
        "type": "object",
        "properties": {
          "pumpId": {
            "type": "integer",
            "format": "int32"
          },
          "fuelGrades": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/pol_service_api.Models.Dsp.FuelGrade"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "pol_service_api.Models.Dsp.RetailSite": {
        "type": "object",
        "properties": {
          "siteName": {
            "type": "string",
            "nullable": true
          },
          "isActive": {
            "type": "boolean"
          },
          "retailSiteBrand": {
            "type": "string",
            "nullable": true
          },
          "mobileEnabled": {
            "type": "boolean",
            "readOnly": true
          },
          "retailSiteOperatingHours": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/pol_service_api.Models.Dsp.RetailSiteOperatingHour"
            },
            "nullable": true
          },
          "retailSiteFeatures": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/pol_service_api.Models.Dsp.RetailSiteFeature"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "pol_service_api.Models.Dsp.RetailSiteFeature": {
        "type": "object",
        "properties": {
          "featureName": {
            "type": "string",
            "nullable": true
          },
          "featureValue": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "pol_service_api.Models.Dsp.RetailSiteOperatingHour": {
        "type": "object",
        "properties": {
          "openingTime": {
            "type": "string",
            "nullable": true
          },
          "closingTime": {
            "type": "string",
            "nullable": true
          },
          "dayOfWeek": {
            "type": "string",
            "nullable": true
          },
          "site24Hours": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "pol_service_api.Models.Events.CardDetails": {
        "type": "object",
        "properties": {
          "cardType": {
            "type": "string",
            "nullable": true
          },
          "cardNumber": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "pol_service_api.Models.Events.PriceDetails": {
        "type": "object",
        "properties": {
          "subTotal": {
            "type": "string",
            "nullable": true
          },
          "totalTax": {
            "type": "string",
            "nullable": true
          },
          "totalAmount": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "pol_service_api.Models.Events.ProductDetails": {
        "type": "object",
        "properties": {
          "productPicked": {
            "type": "string",
            "nullable": true
          },
          "volumePicked": {
            "type": "number",
            "format": "double"
          },
          "unitMeasure": {
            "type": "string",
            "nullable": true
          },
          "pricePerUnit": {
            "type": "number",
            "format": "double",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "pol_service_api.Models.Events.Receipt": {
        "type": "object",
        "properties": {
          "siteId": {
            "type": "string",
            "nullable": true
          },
          "pumpId": {
            "type": "integer",
            "format": "int32"
          },
          "transactionId": {
            "type": "string",
            "nullable": true
          },
          "transactionTime": {
            "type": "string",
            "nullable": true
          },
          "receiptNumber": {
            "type": "string",
            "nullable": true
          },
          "terminalId": {
            "type": "string",
            "nullable": true
          },
          "authCode": {
            "type": "string",
            "nullable": true
          },
          "odometer": {
            "type": "string",
            "nullable": true
          },
          "siteAddress": {
            "$ref": "#/components/schemas/pol_service_api.Models.Events.SiteAddress"
          },
          "productDetails": {
            "$ref": "#/components/schemas/pol_service_api.Models.Events.ProductDetails"
          },
          "priceDetails": {
            "$ref": "#/components/schemas/pol_service_api.Models.Events.PriceDetails"
          },
          "cardDetails": {
            "$ref": "#/components/schemas/pol_service_api.Models.Events.CardDetails"
          }
        },
        "additionalProperties": false
      },
      "pol_service_api.Models.Events.SiteAddress": {
        "type": "object",
        "properties": {
          "siteName": {
            "type": "string",
            "nullable": true
          },
          "street1": {
            "type": "string",
            "nullable": true
          },
          "postalCode": {
            "type": "string",
            "nullable": true
          },
          "city": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "pol_service_api.Models.Txo.VehicleTxo": {
        "type": "object",
        "properties": {
          "odometer": {
            "maximum": 999999,
            "minimum": 0,
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "additionalInfo": {
            "maxLength": 18,
            "minLength": 0,
            "pattern": "^[a-zA-Z0-9]*$",
            "type": "string",
            "nullable": true
          },
          "vehicleRegistration": {
            "type": "string",
            "nullable": true
          },
          "vehicleCode": {
            "maxLength": 4,
            "minLength": 1,
            "pattern": "^[0-9]*$",
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "pol_service_api.Models.Wallet.CreditCard": {
        "required": [
          "full_name",
          "month",
          "number",
          "year"
        ],
        "type": "object",
        "properties": {
          "full_name": {
            "minLength": 1,
            "type": "string"
          },
          "number": {
            "maxLength": 19,
            "minLength": 18,
            "pattern": "^[0-9]*$",
            "type": "string"
          },
          "month": {
            "minLength": 1,
            "type": "string"
          },
          "year": {
            "minLength": 1,
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "pol_service_api.Models.Wallet.Metadata": {
        "required": [
          "tpin"
        ],
        "type": "object",
        "properties": {
          "tpin": {
            "minLength": 1,
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "pol_service_api.Models.Wallet.PostPaymentMethod": {
        "required": [
          "fuel_card",
          "metadata"
        ],
        "type": "object",
        "properties": {
          "fuel_card": {
            "$ref": "#/components/schemas/pol_service_api.Models.Wallet.CreditCard"
          },
          "metadata": {
            "$ref": "#/components/schemas/pol_service_api.Models.Wallet.Metadata"
          }
        },
        "additionalProperties": false
      },
      "pol_service_api.Models.Wallet.PostPaymentMethodResponse": {
        "type": "object",
        "prope

# --- truncated at 32 KB (36 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/bp/refs/heads/main/openapi/bp-fleet-aral-appconnect-openapi.json