Individual - Session Overview
GET/v4/individual/session/:session_id
Respond with the status of the session and all steps id's that compose it. If you want to fetch specific step data you will need to use the step details enpoints.
Request
Path Parameters
session_id stringrequired
Responses
- 200
- 400
- 401
- 404
- 500
200 response
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
app
object
required
id stringrequired
name stringrequired
session
object
required
alias stringrequired
id stringrequired
sandbox booleanrequired
status stringrequired
Possible values: [APPROVED
, REJECTED
, PENDING
]
steps
object[]
required
id string
status stringrequired
type stringrequired
{
"app": {
"id": "12312312314",
"name": "Synaps Demo App"
},
"session": {
"alias": "MY_SESSION_ALIAS",
"id": "e0d87ad0-3549-4727-8972-7016226f793c",
"sandbox": false,
"status": "APPROVED",
"steps": [
{
"id": "5c30e5c3-ed4b-41e8-8b83-879e1d8120bf",
"status": "APPROVED",
"type": "CORPORATE_OFFICER"
}
]
}
}
400 response
- application/json
- Schema
- Example (from schema)
Schema
code int32
message string
{
"code": 1100220,
"message": "An error occured"
}
401 response
- application/json
- Schema
- Example (from schema)
Schema
code int32
message string
{
"code": 1100220,
"message": "An error occured"
}
404 response
- application/json
- Schema
- Example (from schema)
Schema
code int32
message string
{
"code": 1100220,
"message": "An error occured"
}
500 response
- application/json
- Schema
- Example (from schema)
Schema
code int32
message string
{
"code": 1100220,
"message": "An error occured"
}
Loading...