Skip to main content
GET
/
kyc
/
status
Get KYC status
curl --request GET \
  --url https://api.salesive.com/api/v1/kyc/status \
  --header 'Authorization: Bearer <token>'
{
  "status": 200,
  "success": true,
  "message": "KYC status retrieved",
  "data": {
    "status": "pending",
    "sessionId": "sess_abc123",
    "sessionUrl": "https://verification.didit.me/session/sess_abc123",
    "submittedAt": "2026-06-20T10:00:00.000Z",
    "verifiedAt": null,
    "declinedAt": null
  }
}
Returns the store’s current verification status with its active session details and timestamps. The store is bound to your app token server-side — never send a shop id.

Authorizations

Authorization
string
header
required

Installed-app access token (prefix app_), issued by the OAuth install flow. The store is bound to the token server-side — never send a shop id.

Response

The store's current KYC status.

Standard Salesive response envelope. The operation-specific payload is carried in data.

status
integer
required

HTTP status code, echoed in the body.

success
boolean
required

Whether the request succeeded.

message
string
required

Human-readable result message.

data
object

The store's identity-verification (KYC) status and active session details.