Source assignments

Get all source assignments

Returns all Sources assigned to a Reservation group. Each reservation group can have multiple sources. Note this operation uses Pagination.

Request

[PlatformAddress]/api/connector/v1/sourceassignments/getAll

{
    "ClientToken": "E0D439EE522F44368DC78E1BFB03710C-D24FB11DBE31D4621C4817E028D9E1D",
    "AccessToken": "C66EF7B239D24632943D115EDE9CB810-EA00F8FD8294692C940F6B5A8F9453D",
    "Client": "Sample Client 1.0.0",
    "ReservationGroupIds": [
        "730d050c-8098-415a-95af-af2500a2de47"
    ],
    "UpdatedUtc": {
        "StartUtc": "2023-02-1T00:00:00Z",
        "EndUtc": "2023-02-28T00:00:00Z"
    },
    "Limitation": {
        "Count": 10,
        "Cursor": null
    }
}
PropertyTypeContractDescription

ClientToken

string

required

Token identifying the client application.

AccessToken

string

required

Access token of the client application.

Client

string

required

Name and version of the client application.

ReservationGroupIds

array of string

required, max 1000 items

Unique identifiers of the Reservation group.

UpdatedUtc

optional, max length 3 months

Interval of Reservation group last update date and time.

Limitation

required

Limitation on the quantity of source assignment data returned.

Response

{
    "SourceAssignments": [
        {
            "Id": "670ef167-0380-4dd5-8dbb-af1500d3eb16",
            "ReservationGroupId": "730d050c-8098-415a-95af-af2500a2de47",
            "SourceId": "de6c3fcc-feb9-4385-92e0-af25008b864e",
            "IsPrimary": true
        },
        {
            "Id": "da272c89-3afc-4e6f-ad12-af2500a2de79",
            "ReservationGroupId": "730d050c-8098-415a-95af-af2500a2de47",
            "SourceId": "04db79fa-3a31-47c3-ae25-af25008b864e",
            "IsPrimary": false
        }
    ],
    "Cursor": "da272c89-3afc-4e6f-ad12-af2500a2de79"
}
PropertyTypeContractDescription

SourceAssignments

required

Assignments between reservation group and sources.

Cursor

string

required

Unique identifier of the last and hence oldest source assignment returned. This can be used in Limitation in a subsequent request to fetch the next batch of older source assignments.

Source assignment

PropertyTypeContractDescription

Id

string

required

Unique identifier of the source assignement.

ReservationGroupId

string

required

Unique identifier of the Reservation group.

SourceId

string

required

Unique identifier of the Source.

IsPrimary

bool

required

Specifies the primary source for the Reservation group.

Last updated