Skip to main content
POST
/
kyc
/
refresh
Refresh KYC status
curl --request POST \
  --url https://api.salesive.com/api/v1/kyc/refresh \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "sessionId": "sess_abc123"
}
'
{
  "status": 200,
  "success": true,
  "message": "KYC status refreshed",
  "data": {
    "status": "in_review"
  }
}
Re-polls the verification provider for the given session and returns the store’s latest verification status. 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.

Body

application/json
sessionId
string
required

The verification session id to refresh.

Response

The latest KYC status after refreshing.

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 latest verification status after refreshing.