Skip to main content
GET
/
user
/
operations
/
status
/
{userToken}
/
{operationId}
Get operation status
curl --request GET \
  --url https://raas-partner-cv.nomas.cash/v1/user/operations/status/{userToken}/{operationId} \
  --header 'api_key: <api-key>'
"Completed"

Authorizations

api_key
string
header
required

Path Parameters

userToken
string
required

User involved in the transaction.

operationId
string
required

Correlation ID.

Response

200 — OK. Status string for the operation.

The initial status is Sent. While the operation is still in progress, before it settles as Completed or Failed, the status may move through intermediate values that belong to the enumeration below (for example Funding, Funded, OnHold, or InTransit).

Possible statuses: Sent, Funding, Funded, Completed, Failed, OnHold, InTransit, Cancelled.

Scenarios for this response:

ScenarioHow to reproduceTypical code / body
Status readResolved userToken + valid operationId.Plain string, one of the statuses above

See also Full scenario matrix.

The response is of type string.