- ping - A simple endpoint to check auth.
To access this endpoint using an access token
you'll need to specify the /ping.read scope.
A simple endpoint to check auth.
To access this endpoint using an access token
you'll need to specify the /ping.read scope.
from moovio_sdk import Moov
from moovio_sdk.models import components
with Moov(
x_moov_version="v2024.01.00",
security=components.Security(
username="",
password="",
),
) as moov:
res = moov.ping.ping()
# Handle response
print(res)| Parameter | Type | Required | Description |
|---|---|---|---|
request |
operations.PingRequest | ✔️ | The request object to use for the request. |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
| Error Type | Status Code | Content Type |
|---|---|---|
| errors.APIError | 4XX, 5XX | */* |