MVN

io.sdks : card-management-sdk

Maven & Gradle

May 27, 2024

Card Management SDK · The Shell Card Management API is REST-based and employs OAUTH 2.0,Basic and ApiKey authentication. The API endpoints accept JSON-encoded request bodies, return JSON-encoded responses and use standard HTTP response codes. All resources are located in the Shell Card Platform. The Shell Card Platform is the overall platform that encompasses all the internal Shell systems used to manage resources. The internal workings of the platform are not important when interacting with the API. However, it is worth noting that the platform uses a microservice architecture to communicate with various backend systems and some API calls are processed asynchronously. All endpoints use the POST verb for retrieving, updating, creating and deleting resources in the Shell Card Platform. The endpoints that retrieve resources from the Shell Card Platform allow flexible search parameters in the API request body.

<dependency>
    <groupId>io.sdks</groupId>
    <artifactId>card-management-sdk</artifactId>
    <version>1.0.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of io.sdks : card-management-sdk to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.0

All Versions

Choose a version of io.sdks : card-management-sdk to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
card-management-sdk-1.0.0

How to add a dependency to Maven

Add the following io.sdks : card-management-sdk maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>io.sdks</groupId>
    <artifactId>card-management-sdk</artifactId>
    <version>1.0.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following io.sdks : card-management-sdk gradle dependency to your build.gradle file:

implementation 'io.sdks:card-management-sdk:1.0.0'

Gradle Kotlin DSL: Add the following io.sdks : card-management-sdk gradle kotlin dependency to your build.gradle.kts file:

implementation("io.sdks:card-management-sdk:1.0.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following io.sdks : card-management-sdk sbt scala dependency to your build.sbt file:

libraryDependencies += "io.sdks" % "card-management-sdk" % "1.0.0"