SAP

SAP Addresses API

Business partner address management

Operations 1

GET /A_BusinessPartnerAddress Sap List Business Partner Addresses #

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/sap-addresses-api"
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

sap-addresses-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SAP S/4HANA Cloud Business Partner Addresses API
  description: OData v2 API for managing business partner master data in SAP S/4HANA Cloud. Covers creation, retrieval, and update of business partners, addresses, bank accounts, tax numbers, and roles (customer, supplier).
  version: '1.0'
  contact:
    name: SAP Support
    url: https://support.sap.com/
  termsOfService: https://www.sap.com/about/legal/terms-of-use.html
servers:
- url: https://{host}/sap/opu/odata/sap/API_BUSINESS_PARTNER
  description: SAP S/4HANA Cloud OData Endpoint
  variables:
    host:
      description: SAP S/4HANA Cloud hostname
      default: sandbox.api.sap.com
security:
- basicAuth: []
- oauth2: []
tags:
- name: Addresses
  description: Business partner address management
paths:
  /A_BusinessPartnerAddress:
    get:
      operationId: listBusinessPartnerAddresses
      summary: Sap List Business Partner Addresses
      description: Retrieves address records associated with business partners.
      tags:
      - Addresses
      parameters:
      - $ref: '#/components/parameters/Top'
      - $ref: '#/components/parameters/Skip'
      - $ref: '#/components/parameters/Filter'
      responses:
        '200':
          description: Collection of addresses
          content:
            application/json:
              schema:
                type: object
                properties:
                  d:
                    type: object
                    properties:
                      results:
                        type: array
                        items:
                          $ref: '#/components/schemas/BusinessPartnerAddress'
              examples:
                Listbusinesspartneraddresses200Example:
                  summary: Default listBusinessPartnerAddresses 200 response
                  x-microcks-default: true
                  value:
                    d:
                      results:
                      - BusinessPartner: example_value
                        AddressID: '500123'
                        Country: example_value
                        Region: example_value
                        CityName: example_value
                        PostalCode: example_value
                        StreetName: example_value
                        HouseNumber: example_value
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    BusinessPartnerAddress:
      type: object
      properties:
        BusinessPartner:
          type: string
          description: Business partner number
          example: example_value
        AddressID:
          type: string
          description: Address identifier
          example: '500123'
        Country:
          type: string
          description: Country key (ISO 3166-1 alpha-2)
          maxLength: 2
          example: example_value
        Region:
          type: string
          description: Region or state code
          example: example_value
        CityName:
          type: string
          description: City name
          example: example_value
        PostalCode:
          type: string
          description: Postal code
          example: example_value
        StreetName:
          type: string
          description: Street name
          example: example_value
        HouseNumber:
          type: string
          description: House number
          example: example_value
  parameters:
    Top:
      name: $top
      in: query
      description: Maximum number of entries to return
      schema:
        type: integer
        minimum: 1
    Skip:
      name: $skip
      in: query
      description: Number of entries to skip
      schema:
        type: integer
        minimum: 0
    Filter:
      name: $filter
      in: query
      description: OData filter expression
      schema:
        type: string
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: Basic authentication with SAP user credentials
    oauth2:
      type: oauth2
      description: OAuth 2.0 authentication
      flows:
        clientCredentials:
          tokenUrl: https://{host}/oauth/token
          scopes:
            API_BUSINESS_PARTNER: Access to Business Partner API
externalDocs:
  description: SAP S/4HANA Cloud Business Partner API on SAP Business Accelerator Hub
  url: https://api.sap.com/api/API_BUSINESS_PARTNER/overview