Card Processing Online Application
View application by onboarding ID
Returns the application information for a specific onboardingId that is associated with the Nexio account used to authenticate.
<!-- theme: info --><!-- theme: warning -->📘 Notes
- You cannot use this endpoint in the sandbox environment.
- For authentication with this endpoint, use your Production API user credentials.
<div style="display:none;">⚠️ Try It
Due to technical limitations, it is not possible to use the Try It feature with this endpoint. Instead, for the production environment, use something like Postman or your own server (along with the credentials for your Production API user) to make the request.
Request parameters
- onboardingId
Response parameters
- merchantName
- merchantId
- status
- signer
- phoneNumber
- agentName
- repCode
- agentId
- onboardingId
- credsReady
- pendingItemsUpdatedAt
- pendingNotes.dateAdded
- pendingNotes.note
- apiUserCredentials.apiKey
- apiUserCredentials.userName
- apiUserCredentials.merchantIds
- apiUserCredentials.accountId
get/processorOnboarding/v2/applications/{onboardingId}
Response
Success
Example response
{
"merchantName": "[Merchant name]",
"merchantId": "000999",
"status": "App Created",
"signer": "John Doe",
"phoneNumber": "15555555555",
"agentName": "Agent Smith",
"repCode": "123Z",
"agentId": 1234,
"onboardingId": "16c3d4c3673f3b5193e56a651df0d3e4",
"pendingItemsUpdatedAt": "2023-04-28T18:50:04.866Z",
"pendingNotes": [
{
"dateAdded": "2023-04-29T18:50:04.866Z",
"note": "This is a pending note."
}
],
"apiUserCredentials": [
{
"apiKey": "apiKey_c78GnjfRBQTjxz",
"userName": "user_bfh4673d42a24234ddf2d430234fe24e",
"merchantIds": [
"000999"
],
"accountId": "bc2d3e21-3d12-34ac-b789-f6c5dba45941"
}
]
}