GET/transactions/{userId}/{transactionId|transactionNumber}

Get Transaction By ID

Returns full details of a specific transaction for a user. Look up by either transactionId or transactionNumber.

Path variables

FieldTypeRequiredPossible valuesDescription
userIdstringRequired

Unique user ID who owns the transaction.

transactionId|transactionNumberstringRequired

Transaction ID or transaction number (for example `FV000726650`).

Headers

FieldTypeRequiredPossible valuesDescription
session-tokenstringRequired

SessionToken obtained from the Create GMA Session endpoint. All secured endpoints require this header.

Response

FieldTypePossible valuesDescription
ResponseCodeinteger200 | 201 | 204 | 301 | 400 | 401 | 403 | 404 | 410 | 422 | 500 | 503

API result code in the response envelope. Indicates success or the error category (e.g. 200 success, 400 bad request, 401 unauthorized).

ResponseMessagestringSuccess | Created | NoContent | BadRequest | Unauthorized | Forbidden | NotFound | Gone | UnprocessableContent | ServerError | ResourceMoved | ServiceUnAvailable | UnProcessableEntity

Human-readable label paired with ResponseCode (e.g. Success, BadRequest, Unauthorized). Use with ResponseCode to interpret the outcome.

ResponseDataobjectPlease refer to below example for response body

Full details of the transaction.

Example response

{
  "ResponseCode": 200,
  "ResponseMessage": "Success",
  "ResponseData": {
    "Id": "1048104296071474997",
    "TransactionNumber": "FV000726650",
    "Date": "2026-06-16T09:10:42.334-04:00",
    "Amount": "40.00",
    "Description": "test",
    "Currency": "USD",
    "TransferType": "FVNet",
    "DisplayTransferType": "Payment - FV Net",
    "Direction": "CREDIT",
    "AuthorizationStatus": "authorized",
    "CustomValues": [
      {
        "Label": "Supporting Document",
        "Value": "dummy.pdf"
      },
      {
        "Label": "Payment Purpose",
        "Value": "Asset Purchase"
      }
    ]
  }
}

Requires `session-token: {SessionToken}` from Create GMA Session. Use the same client IP as authentication.

Search guide books, endpoints, paths, or parameters

↑↓navigateopenEscclose