Skip to main content
POST
/
api
/
v4
/
engagements
/
card
/
onboarding
curl --request POST \ --url https://partner-card.test.public.rockerapi.dev/api/v4/engagements/card/onboarding \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data ' { "cardType": "CREDIT", "applicant": { "nationality": "DE", "salutation": "HERR", "firstName": "Hans", "lastName": "Müller", "phone": "+491701234567", "email": "[email protected]", "dateOfBirth": "1985-07-15", "placeOfBirth": "Berlin", "address": { "streetLine1": "Hauptstraße 10", "city": "Berlin", "postalCode": "10115", "country": "DE" }, "employmentType": "PERMANENT", "civilStatus": "MARRIED", "monthlyIncome": { "currency": "EUR", "amount": 350000, "unit": "MINOR" }, "housing": "OWNER", "locale": "de" }, "redirectUrls": { "successUrl": "https://example.com/success", "failUrl": "https://example.com/fail" }, "onboardingType": "CONSUMER" } '
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "PROCESSING",
  "createdAt": "2023-11-07T05:31:56Z",
  "additionalInformation": {
    "creditAssessment": {
      "approvedLimit": {
        "amount": 123,
        "currency": "<string>",
        "unit": "<string>"
      },
      "approvedAt": "2023-11-07T05:31:56Z",
      "validUntil": "2023-11-07T05:31:56Z"
    },
    "engagementId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
cardType
enum<string>
required
Available options:
CREDIT,
DEBIT,
PREPAID
applicant
HttpApplicantV2 · object
required
company
HttpCompanyV3 · object
required
redirectUrls
HttpRedirectUrls · object
required
onboardingType
string
required
Allowed value: "BUSINESS"
metadata
Metadata · object

Key-value map. You can use metadata to store additional, structured information on an object. Max key length: 48 chars. Keys must not start with a digit. Max value length: 256 chars.

Response

id
string<uuid>
required
status
enum<string>
required
Available options:
PROCESSING,
AWAITING_DOCUMENTS,
AWAITING_SIGNING,
AWAITING_DOCUMENT_REVIEW,
AWAITING_CARD_CREATION,
COMPLETED,
REJECTED,
FAILED
createdAt
string<date-time>
required
additionalInformation
CompletedOnboardingInformation · object