Skip to main content
GET
/
api
/
v2
/
engagements
/
card
/
onboarding
/
{onboarding-id}
Get onboarding V2
curl --request GET \
  --url https://partner-card.test.public.rockerapi.dev/api/v2/engagements/card/onboarding/{onboarding-id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "PROCESSING",
  "cardType": "CREDIT",
  "applicant": {
    "nationality": "<string>",
    "salutation": "HERR",
    "firstName": "<string>",
    "lastName": "<string>",
    "phone": "<string>",
    "email": "<string>",
    "dateOfBirth": "<string>",
    "placeOfBirth": "<string>",
    "address": {
      "streetLine1": "<string>",
      "city": "<string>",
      "postalCode": "<string>",
      "country": "<string>",
      "streetLine2": "<string>"
    },
    "employmentType": "PERMANENT",
    "civilStatus": "SINGLE",
    "monthlyIncome": {
      "amount": 123,
      "currency": "<string>",
      "unit": "<string>"
    },
    "housing": "RENTING",
    "locale": "de",
    "verifiedPhone": "<string>",
    "externalCustomerId": "<string>"
  },
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "onboardingType": "<string>",
  "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"
  },
  "customerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "metadata": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

onboarding-id
string<uuid>
required

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
cardType
enum<string>
required
Available options:
CREDIT,
DEBIT,
PREPAID
applicant
HttpApplicant · object
required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required
onboardingType
string
required
Allowed value: "INDIVIDUAL"
additionalInformation
CompletedOnboardingInformation · object
customerId
string<uuid>
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.