Skip to content

Latest commit

 

History

History
56 lines (36 loc) · 2.09 KB

README.md

File metadata and controls

56 lines (36 loc) · 2.09 KB

Ping

(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(
    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 */*