Skip to content

Latest commit

 

History

History
151 lines (129 loc) · 4.89 KB

bookingcurrency-list.md

File metadata and controls

151 lines (129 loc) · 4.89 KB
title description ms.localizationpriority author ms.prod doc_type
List bookingCurrencies
Get a list of bookingCurrency objects available to a Microsoft Bookings business.
medium
arvindmicrosoft
bookings
apiPageType

List bookingCurrencies

Namespace: microsoft.graph

Get a list of bookingCurrency objects available to a Microsoft Bookings business.

[!INCLUDE national-cloud-support]

Permissions

Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.

[!INCLUDE permissions-table]

HTTP request

GET /solutions/bookingCurrencies

Optional query parameters

This method supports the $count and $expand OData query parameters to help customize the response, including $count, $filter, $select, $skip, and $top.

Request headers

Name Description
Authorization Bearer {code}

Request body

Don't supply a request body for this method.

Response

If successful, this method returns a 200 OK response code and a collection of bookingCurrency objects in the response body.

Example

Request

The following example shows a request.

GET https://graph.microsoft.com/v1.0/solutions/bookingCurrencies

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

The following example shows the response. Note: The response object shown here is truncated for brevity. All of the supported currencies and properties will be returned from an actual call.

HTTP/1.1 200 OK
Content-type: application/json

{
    "@odata.context":"https://graph.microsoft.com/v1.0/solutions/$metadata#bookingCurrencies",
    "value":[
        {
            "id":"AED",
            "symbol":"د.إ.‏"
        },
        {
            "id":"AFN",
            "symbol":"؋"
        },
        {
            "id":"ALL",
            "symbol":"Lekë"
        },
        {
            "id":"AMD",
            "symbol":"֏"
        },
        {
            "id":"USD",
            "symbol":"$"
        },
        {
            "id":"YER",
            "symbol":"ر.ي.‏"
        },
        {
            "id":"ZAR",
            "symbol":"R"
        },
        {
            "id":"ZMW",
            "symbol":"K"
        }
    ]
}