Logo
NeoArc Studio

Endpoints Reference

Complete reference for REST API endpoint definitions including HTTP methods, paths, request bodies, and responses.

Endpoints define the operations available in your REST API. Each endpoint specifies an HTTP method, path, and the expected request and response formats.

Endpoint Properties

Core endpoint properties
PropertyTypeDescription
idstringUnique endpoint identifier
methodenumHTTP method (GET, POST, PUT, PATCH, DELETE, OPTIONS, HEAD)
pathstringURL path with optional parameters (e.g., /users/{id})
summarystringShort description for documentation
descriptionstringDetailed description (rich text supported)
tagsarrayTags for grouping related endpoints
operationIdstringUnique operation identifier for code generation
deprecatedbooleanDeprecation flag

HTTP Methods

Supported HTTP methods
MethodPurposeIdempotent
GETRetrieve resourcesYes
POSTCreate resourcesNo
PUTReplace resources entirelyYes
PATCHPartial update of resourcesNo
DELETERemove resourcesYes
OPTIONSDescribe available optionsYes
HEADRetrieve headers only (no body)Yes

Path Parameters

Request Body

Request body properties
PropertyDescription
requiredWhether the body is required for the request
descriptionDescription of the request body contents
contentContent type and schema definition

Tags

Deprecation