openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BAPI_BUPA_SEARCH: post: tags: - BUBA_3 summary: 'SAP BP, BAPI: Search Business Partner for Telephone, E-Mail, Address' operationId: /rfc/BAPI_BUPA_SEARCH requestBody: content: application/json: schema: properties: ADDRESSDATA: type: object properties: CITY1: type: string maxLength: 25 description: City name in upper case for search help POSTL_COD1: type: string maxLength: 10 description: City postal code COUNTRY: type: string maxLength: 3 description: Country Key COUNTRYISO: type: string maxLength: 2 description: Country ISO code REGION: type: string maxLength: 3 description: Region (State, Province, County) STREET: type: string maxLength: 25 description: Street name in upper case for search help HOUSE_NO: type: string maxLength: 10 description: House Number BUSINESSPARTNERROLE: type: string maxLength: 6 description: Business Partner Role CENTRALDATA: type: object properties: PARTNER: type: string maxLength: 10 description: Business Partner Number MC_NAME1: type: string maxLength: 35 description: Search Help Field 1 (Name 1/Last Name) MC_NAME2: type: string maxLength: 35 description: Search Help Field 2 (Name 2/First Name) SEARCHTERM1: type: string maxLength: 20 description: Search term 1 for business partner SEARCHTERM2: type: string maxLength: 20 description: Search term 2 for business partner PARTNERCATEGORY: type: string maxLength: 1 description: 'Business partner category enumValues: 3=Group,2=Organization,1=Person' enum: - '3' - '2' - '1' COUNTRY_FOR_TELEPHONE: type: string maxLength: 3 EMAIL: type: string maxLength: 241 description: Internet Mail (SMTP) Address Search Field FAX_DATA: type: object properties: COUNTRY_FOR_FAX: type: string maxLength: 3 description: Country for telephone/fax number FAX_NO: type: string maxLength: 30 description: 'Complete number: dialling code+number+extension' OTHERS: type: object properties: MAXSEL: type: integer format: int32 description: Maximum number of selected entries ALL_VERSIONS: type: string maxLength: 1 description: 'Take All Address Versions into Account enumValues: X=TRUE,""=FALSE' enum: - X - '' NO_SEARCH_FOR_CONTACTPERSON: type: string maxLength: 1 description: 'Search by Relationship Data (''X'': No Search; Space: Search) enumValues: X=TRUE,""=FALSE' enum: - X - '' TELEPHONE: type: string maxLength: 30 description: Telephone Number URL: type: string maxLength: 50 description: URI address search field SEARCHRESULT: type: array items: type: object properties: PARTNER: type: string maxLength: 10 description: Business Partner Number ADDRESSGUID: type: string maxLength: 32 description: GUID of a BP Address in CHAR 32 Format for BAPIs ADDRESSTYPE: type: string maxLength: 1 description: 'Address type (1=Organization, 2=Person, 3=Contact person) enumValues: 1=Organization, Company,2=Private address,3=Contact person (in company)' enum: - '1' - '2' - '3' COMPANY_PARTNER: type: string maxLength: 10 description: Business Partner Number responses: '200': description: OK content: application/json: schema: properties: RETURN: type: array items: type: object properties: TYPE: type: string maxLength: 1 description: 'Message type: S Success, E Error, W Warning, I Info, A Abort' ID: type: string maxLength: 20 description: Message Class NUMBER: type: integer format: int64 description: Message Number MESSAGE: type: string maxLength: 220 description: Message Text LOG_NO: type: string maxLength: 20 description: 'Application log: log number' LOG_MSG_NO: type: integer format: int64 description: 'Application log: Internal message serial number' MESSAGE_V1: type: string maxLength: 50 description: Message Variable MESSAGE_V2: type: string maxLength: 50 description: Message Variable MESSAGE_V3: type: string maxLength: 50 description: Message Variable MESSAGE_V4: type: string maxLength: 50 description: Message Variable PARAMETER: type: string maxLength: 32 description: Parameter Name ROW: type: integer format: int32 description: Lines in parameter FIELD: type: string maxLength: 30 description: Field in parameter SYSTEM: type: string maxLength: 10 description: Logical system from which message originates SEARCHRESULT: type: array items: type: object properties: PARTNER: type: string maxLength: 10 description: Business Partner Number ADDRESSGUID: type: string maxLength: 32 description: GUID of a BP Address in CHAR 32 Format for BAPIs ADDRESSTYPE: type: string maxLength: 1 description: 'Address type (1=Organization, 2=Person, 3=Contact person) enumValues: 1=Organization, Company,2=Private address,3=Contact person (in company)' enum: - '1' - '2' - '3' COMPANY_PARTNER: type: string maxLength: 10 description: Business Partner Number '400': description: Bad request. 5XX: description: Unexpected error.