Overview
Returns a personalized greeting message if the user is authenticated. This endpoint is useful for testing authentication tokens and verifying API access.Endpoint
Authentication
Requires a Personal API Access Token.Header
Request
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer | Yes |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| name | string | Yes | Name to include in greeting |
Query Parameters
None.Response
Success Response (200 OK)
Content-Type:text/plain
Example
Notes
- Returns “Hello ” if authentication is successful
- Name is taken from path parameter
- Response is plain text
Error Response (401 Unauthorized)
cURL Example
Notes and Warnings
- Authentication Required:
- This endpoint requires a valid authentication token
- Invalid tokens will return 401 Unauthorized
- Simple Test:
- Useful for quick authentication verification
- Does not perform any complex operations
Related Documentation
- Healthcheck - Check API availability
- Authentication Guide - How to obtain tokens

