openapi: 3.0.0 info: title: SAP API version: 1.0.0 servers: - url: http://localhost:8080 paths: /rfc/BUP_PARTNER_GET_BY_IDNUMBER: post: tags: - BUD1 operationId: /rfc/BUP_PARTNER_GET_BY_IDNUMBER requestBody: content: application/json: schema: properties: I_CATEGORY: type: string maxLength: 6 description: Identification Category I_IDNUMBER: type: string maxLength: 60 description: Identification Number I_VALDT: type: string format: date default: '00000000' description: Validity Date I_XMEMORY: type: string default: ' ' maxLength: 1 I_XWA: type: string default: ' ' maxLength: 1 T_PARTNER: type: array items: type: object properties: PARTNER: type: string maxLength: 10 description: Business Partner Number T_PARTNER_GUID: type: array items: type: object properties: PARTNER: type: string maxLength: 10 description: Business Partner Number PARTNER_GUID: type: string format: byte description: Business Partner GUID required: - I_CATEGORY - I_IDNUMBER responses: '200': description: OK content: application/json: schema: properties: T_PARTNER: type: array items: type: object properties: PARTNER: type: string maxLength: 10 description: Business Partner Number T_PARTNER_GUID: type: array items: type: object properties: PARTNER: type: string maxLength: 10 description: Business Partner Number PARTNER_GUID: type: string format: byte description: Business Partner GUID '400': description: Bad request. 5XX: description: Unexpected error.