Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 2.2 KB

File metadata and controls

57 lines (37 loc) · 2.2 KB

Ping

Overview

Available Operations

  • ping - A simple endpoint to check auth.

To access this endpoint using an access token you'll need to specify the /ping.read scope.

ping

A simple endpoint to check auth.

To access this endpoint using an access token you'll need to specify the /ping.read scope.

Example Usage

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)

Parameters

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.

Response

operations.PingResponse

Errors

Error Type Status Code Content Type
errors.APIError 4XX, 5XX */*