MODIVO Payment Services Paypal Payment SDK Request V1 API

An interface for the REST WebAPI to get payment sdk urls

Operations 2

GET /V1/payments-sdk/{location} #
GET /V1/payments-sdk/{location}/{methodCode} #

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/modivo-paymentservicespaypalpaymentsdkrequestv1-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

modivo-paymentservicespaypalpaymentsdkrequestv1-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: MODIVO Commerce REST Payment Services Paypal Payment SDK Request V1 API
  version: '2.4'
  description: Public REST API surface of the MODIVO storefront (modivo.pl), served by its Adobe Commerce / Magento 2.4 deployment and self-described at https://modivo.pl/rest/all/schema?services=all. Covers guest cart and checkout, guest order placement, marketplace order placement, customer account management, product render info, search, directory data, gift messages, in-store pickup locations, PayPal/Braintree payment services, and MODIVO-specific extensions (MODIVO My Returns webhook, eobuwie JWT service, Trustmate review integration). Anonymous access is limited to unauthenticated storefront operations; the remainder requires a Magento integration or customer bearer token. Mechanically converted from the provider's own Swagger 2.0 document; the verbatim original is in openapi/_original/.
  x-source: https://modivo.pl/rest/all/schema?services=all
servers:
- url: https://modivo.pl/rest/all
tags:
- name: paymentServicesPaypalPaymentSdkRequestV1
  description: An interface for the REST WebAPI to get payment sdk urls
paths:
  /V1/payments-sdk/{location}:
    get:
      tags:
      - paymentServicesPaypalPaymentSdkRequestV1
      description: Get payment sdk url by location
      operationId: GetV1PaymentssdkLocation
      parameters:
      - name: location
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: 200 Success.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/payment-services-paypal-data-payment-sdk-params-interface'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/payment-services-paypal-data-payment-sdk-params-interface'
        default:
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/error-response'
            application/xml:
              schema:
                $ref: '#/components/schemas/error-response'
  /V1/payments-sdk/{location}/{methodCode}:
    get:
      tags:
      - paymentServicesPaypalPaymentSdkRequestV1
      description: Get payment sdk url by location and methodCode
      operationId: GetV1PaymentssdkLocationMethodCode
      parameters:
      - name: location
        in: path
        required: true
        schema:
          type: string
      - name: methodCode
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: 200 Success.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/payment-services-paypal-data-payment-sdk-params-interface'
            application/xml:
              schema:
                $ref: '#/components/schemas/payment-services-paypal-data-payment-sdk-params-interface'
        default:
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/error-response'
            application/xml:
              schema:
                $ref: '#/components/schemas/error-response'
components:
  schemas:
    error-errors-item:
      type: object
      description: Error details
      properties:
        message:
          type: string
          description: Error message
        parameters:
          $ref: '#/components/schemas/error-parameters'
    payment-services-paypal-data-payment-sdk-params-interface:
      type: object
      description: ''
      properties:
        code:
          type: string
          description: The payments sdk code
        params:
          type: array
          description: The payments sdk params
          items:
            $ref: '#/components/schemas/payment-services-paypal-data-payment-config-sdk-params-interface'
      required:
      - code
      - params
    error-parameters-item:
      type: object
      description: Error parameters item
      properties:
        resources:
          type: string
          description: ACL resource
        fieldName:
          type: string
          description: Missing or invalid field name
        fieldValue:
          type: string
          description: Incorrect field value
    error-errors:
      type: array
      description: Errors list
      items:
        $ref: '#/components/schemas/error-errors-item'
    payment-services-paypal-data-payment-config-sdk-params-interface:
      type: object
      description: ''
      properties:
        name:
          type: string
          description: Code
        value:
          type: string
          description: Config
      required:
      - name
      - value
    error-response:
      type: object
      properties:
        message:
          type: string
          description: Error message
        errors:
          $ref: '#/components/schemas/error-errors'
        code:
          type: integer
          description: Error code
        parameters:
          $ref: '#/components/schemas/error-parameters'
        trace:
          type: string
          description: Stack trace
      required:
      - message
    error-parameters:
      type: array
      description: Error parameters list
      items:
        $ref: '#/components/schemas/error-parameters-item'
  securitySchemes:
    api_key:
      type: apiKey
      name: api_key
      in: header
      description: Magento integration/customer bearer token supplied in the Authorization header (Bearer <token>).