Updated on 2024-12-03 GMT+08:00

Creating a Transaction

Function

This API is used to create a transaction.

URI

POST /ges/v1.0/{project_id}/graphs/{graph_name}/transaction
Table 1 URI parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

Project ID. For how to obtain the project ID, see Obtaining a Project ID.

graph_name

Yes

String

Graph name

Request Parameters

None

Response Parameters

Table 2 Response body parameters

Parameter

Type

Description

errorMessage

String

System prompt

  • If the execution succeeds, this parameter may be left blank.
  • If the execution fails, this parameter is used to display the error message.

errorCode

String

System prompt

  • If the execution succeeds, this parameter may be left blank.
  • If the execution fails, this parameter is used to display the error code.

result

String

Transaction creation result. The value is success for a successful request and failed for a failed request.

commit

String

ID of the created transaction.

Example Request

Create a transaction.

POST http://{SERVER_URL}/ges/v1.0/{project_id}/graphs/{graph_name}/transaction
{}

SERVER_URL: Address for accessing a graph. For details about its value, see Using Service Plane APIs.

Example Response

Status code: 200

Example response for a successful request

{
    "commit": "140507984406272-2fa8a507-f13b-4f23-8dde-4693db982b900000000019090",
    "result": "success"
}

Status code: 400

Example response for a failed request

{
    "errorMessage": "Graph [11-moie] does not exist, please check projectId and graphName.",
    "errorCode": "GES.8000",
    "result": "failed"
}

Status Codes

Return Value

Description

400 Bad Request

Request error.

401 Unauthorized

Authorization failed.

403 Forbidden

No operation permissions.

404 Not Found

No resources found.

500 Internal Server Error

Internal server error.

503 Service Unavailable

Service unavailable.