Run in Apidog
Returns the connection status for all supported apps for a given user. An app is "connected" if at least one credential is stored via POST /platform-credential. Query Parameters# Name Type Required Description Example userIdstringYes Unique identifier for the user BVZGM5TE9BMP3PP0VWGW943RGV1B
Notes# Multiple credentials per platform are supported — each POST /platform-credential call adds a new entry.
connected: true does not guarantee the credentials are still valid on the platform side.
Request Add parameter in header cmr-x-api-key
Example: cmr-x-api-key: ********************
or
Request Code Samples
curl --location 'https://customers.coldmailreseller.com/api/v1/integration/exports/platform-credentials?userId=BVZGM5TE9BMP3PP0VWGW943RGV1B' \
--header 'cmr-x-api-key: <api-key>' Responses application/json
Generate Code
{
"status" : 200 ,
"message" : "Fetched connected accounts successfully" ,
"data" : {
"EMAILBISON" : {
"connected" : true ,
"credentials" : [
{
"credentialId" : "A1B2C3D4E5F6G7H8" ,
"email" : "john@agency.com" ,
"connectedAt" : "2024-05-01T10:00:00.000Z" ,
"metadata" : {
"appBaseUrl" : "https://app.emailbison.com" ,
"appName" : "EmailBison" ,
"workspace" : "my-workspace"
}
}
]
}
}
}
Modified at 2026-06-23 16:21:02