BuildInfo
These endpoints can be used to get the technical information about the service such as version, build date and similar. They are also useful for a quick test whether the service is available. All of them are working in the same way and return the same information - use the HEAD or GET flavor of this endpoint based on your preference.
HeadInfo
Gets assembly build info
Request
HEAD /api/atoms/v1/info
Responses
Status Code | Type | Description | Samples |
---|---|---|---|
200 | Success |
||
Headers | |||
X-Aurigma-Version | string | A version number |
|
X-Aurigma-Build-Date | string | A build date (UTC) |
|
X-Aurigma-Configuration | string | A build configuration (Debug | Release) |
|
X-Aurigma-App-Name | string | A service name |
GetInfo
Gets assembly build info
Request
GET /api/atoms/v1/info
Responses
Status Code | Type | Description | Samples |
---|---|---|---|
200 |
|
Success |
Definitions
BuildInfoModel
Information about a service
Name | Type | Notes |
---|---|---|
version | string | Version number |
buildDate | string | Build date (UTC) |
configuration | string | Build configuration (Debug | Release) |
appName | string | Service name |