@@ -4021,6 +4021,92 @@ const docTemplate = `{
40214021 }
40224022 }
40234023 },
4024+ "/v3/transactions/{transactionId}": {
4025+ "get": {
4026+ "description": "Returns a specific transaction",
4027+ "produces": [
4028+ "application/json"
4029+ ],
4030+ "tags": [
4031+ "Transactions"
4032+ ],
4033+ "summary": "Get transaction",
4034+ "parameters": [
4035+ {
4036+ "type": "string",
4037+ "description": "ID formatted as string",
4038+ "name": "transactionId",
4039+ "in": "path",
4040+ "required": true
4041+ }
4042+ ],
4043+ "responses": {
4044+ "200": {
4045+ "description": "OK",
4046+ "schema": {
4047+ "$ref": "#/definitions/controllers.TransactionResponseV3"
4048+ }
4049+ },
4050+ "400": {
4051+ "description": "Bad Request",
4052+ "schema": {
4053+ "$ref": "#/definitions/httperrors.HTTPError"
4054+ }
4055+ },
4056+ "404": {
4057+ "description": "Not Found",
4058+ "schema": {
4059+ "$ref": "#/definitions/httperrors.HTTPError"
4060+ }
4061+ },
4062+ "500": {
4063+ "description": "Internal Server Error",
4064+ "schema": {
4065+ "$ref": "#/definitions/httperrors.HTTPError"
4066+ }
4067+ }
4068+ }
4069+ },
4070+ "options": {
4071+ "description": "Returns an empty response with the HTTP Header \"allow\" set to the allowed HTTP verbs",
4072+ "tags": [
4073+ "Transactions"
4074+ ],
4075+ "summary": "Allowed HTTP verbs",
4076+ "parameters": [
4077+ {
4078+ "type": "string",
4079+ "description": "ID formatted as string",
4080+ "name": "transactionId",
4081+ "in": "path",
4082+ "required": true
4083+ }
4084+ ],
4085+ "responses": {
4086+ "204": {
4087+ "description": "No Content"
4088+ },
4089+ "400": {
4090+ "description": "Bad Request",
4091+ "schema": {
4092+ "$ref": "#/definitions/httperrors.HTTPError"
4093+ }
4094+ },
4095+ "404": {
4096+ "description": "Not Found",
4097+ "schema": {
4098+ "$ref": "#/definitions/httperrors.HTTPError"
4099+ }
4100+ },
4101+ "500": {
4102+ "description": "Internal Server Error",
4103+ "schema": {
4104+ "$ref": "#/definitions/httperrors.HTTPError"
4105+ }
4106+ }
4107+ }
4108+ }
4109+ },
40244110 "/version": {
40254111 "get": {
40264112 "description": "Returns the software version of the API",
0 commit comments