Returns all resource blocks (out of order blocks or internal use blocks).
Note this operation uses Pagination and supports Portfolio Access Tokens .
[PlatformAddress]/api/connector/v1/resourceBlocks/getAll
{
"ClientToken" : "E0D439EE522F44368DC78E1BFB03710C-D24FB11DBE31D4621C4817E028D9E1D" ,
"AccessToken" : "C66EF7B239D24632943D115EDE9CB810-EA00F8FD8294692C940F6B5A8F9453D" ,
"Client" : "Sample Client 1.0.0" ,
"EnterpriseIds" : [
"3fa85f64-5717-4562-b3fc-2c963f66afa6" ,
"4d0201db-36f5-428b-8d11-4f0a65e960cc"
] ,
"ResourceBlockIds" : [
"c478f1b3-7edb-4ccc-8f07-dd32fae1ca70"
] ,
"AssignedResourceIds" : [
"b64f088d-49b5-4d5f-9766-2e27c4b75e27"
] ,
"CollidingUtc" : {
"StartUtc" : "2020-01-25T00:00:00Z" ,
"EndUtc" : "2020-01-30T00:00:00Z"
} ,
"CreatedUtc" : {
"StartUtc" : "2020-01-05T00:00:00Z" ,
"EndUtc" : "2020-01-10T00:00:00Z"
} ,
"UpdatedUtc" : {
"StartUtc" : "2020-01-15T00:00:00Z" ,
"EndUtc" : "2020-01-20T00:00:00Z"
} ,
"Extent" : {
"Inactive" : true
} ,
"Limitation" : { "Count" : 10 }
}
Property
Type
Contract
Description
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.
EnterpriseIds
array of string
optional, max 1000 items
Unique identifiers of the Enterprises . If not specified, the operation returns data for all enterprises within scope of the Access Token.
ResourceBlockIds
array of string
optional, max 1000 items
Unique identifiers of the requested Resource blocks .
AssignedResourceIds
array of string
optional, max 1000 items
Unique identifiers of the requested Assigned Resources .
CollidingUtc
Time interval
optional, max length 3 months
Interval in which the Resource block is active.
CreatedUtc
Time interval
optional, max length 3 months
Interval in which the Resource block was created.
UpdatedUtc
Time interval
optional, max length 3 months
Interval in which the Resource block was updated.
Extent
Resource block extent
required
Extent of data to be returned.
Limitation
Limitation
required
Limitation on the quantity of data returned.
Property
Type
Contract
Description
Inactive
bool
required
Whether the response should contain inactive entities.
{
"ResourceBlocks" : [
{
"AssignedResourceId" : "5ee074b1-6c86-48e8-915f-c7aa4702086f" ,
"CreatedUtc" : "2016-03-29T22:02:34Z" ,
"EndUtc" : "2016-01-01T16:00:00Z" ,
"Id" : "5ab9d519-2485-4d77-85c4-2a619cbdc4e7" ,
"IsActive" : true ,
"StartUtc" : "2016-01-01T10:00:00Z" ,
"Type" : "InternalUse" ,
"UpdatedUtc" : "2016-03-29T22:02:34Z" ,
"Name" : "Resource block 1" ,
"Notes" : "Note"
} ,
{
"AssignedResourceId" : "f7c4b4f5-ac83-4977-a41a-63d27cc6e3e9" ,
"CreatedUtc" : "2016-03-29T15:14:06Z" ,
"EndUtc" : "2016-01-01T16:00:00Z" ,
"Id" : "4d98ad40-a726-409e-8bf3-2c12ff3c0331" ,
"IsActive" : true ,
"StartUtc" : "2016-01-01T10:00:00Z" ,
"Type" : "OutOfOrder" ,
"UpdatedUtc" : "2016-03-29T15:14:06Z" ,
"Name" : "Resource block 2" ,
"Notes" : null
}
]
}
Property
Type
Contract
Description
ResourceBlocks
array of Resource block
required
The resource blocks colliding with the interval or matching the Id parameters.
Property
Type
Contract
Description
Id
string
required
Unique identifier of the block.
AssignedResourceId
string
required
Unique identifier of the assigned Resource .
IsActive
bool
required
Whether the block is still active.
Type
string Resource block type
required
Type of the resource block.
StartUtc
string
required
Start of the block in UTC timezone in ISO 8601 format.
EndUtc
string
required
End of the block in UTC timezone in ISO 8601 format.
CreatedUtc
string
required
Creation date and time of the block in UTC timezone in ISO 8601 format.
UpdatedUtc
string
required
Last update date and time of the block in UTC timezone in ISO 8601 format.
Name
string
required
Name of the resource block.
Notes
string
optional
Note describing the resource block.
Adds a new resource block to the specified resource for a defined period of time.
[PlatformAddress]/api/connector/v1/resourceBlocks/add
{
"ClientToken" : "E0D439EE522F44368DC78E1BFB03710C-D24FB11DBE31D4621C4817E028D9E1D" ,
"AccessToken" : "C66EF7B239D24632943D115EDE9CB810-EA00F8FD8294692C940F6B5A8F9453D" ,
"Client" : "Sample Client 1.0.0" ,
"ResourceBlocks" : [
{
"ResourceId" : "0d71d44e-3d85-4506-9b6f-aab500b69c52" ,
"Name" : "Resource block 1" ,
"StartUtc" : "2019-10-15T10:00:00Z" ,
"EndUtc" : "2019-10-20T10:00:00Z" ,
"Type" : "OutOfOrder" ,
"Notes" : "Note"
} ,
{
"ResourceId" : "f7c4b4f5-ac83-4977-a41a-63d27cc6e3e9" ,
"Name" : "Resource block 2" ,
"StartUtc" : "2019-10-15T10:00:00Z" ,
"EndUtc" : "2019-10-20T10:00:00Z" ,
"Type" : "InternalUse" ,
"Notes" : "Note"
}
]
}
Property
Type
Contract
Description
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.
ResourceBlocks
array of Resource block parameters
required
Resource block parameters.
Resource block parameters
Property
Type
Contract
Description
ResourceId
string
required
Unique identifier of Resource .
Name
string
required
Name of the resource block.
StartUtc
string
required
Start of the interval in UTC timezone in ISO 8601 format.
EndUtc
string
required
End of the interval in UTC timezone in ISO 8601 format.
Type
string Resource block type
required
Type of the resource block.
Notes
string
optional
Note describing the resource block.
{
"ResourceBlocks" : [
{
"Id" : "0913bd1d-69fc-4bcb-82d3-5a40520c8fb0" ,
"AssignedResourceId" : "0d71d44e-3d85-4506-9b6f-aab500b69c52" ,
"Name" : "Resource block 1" ,
"StartUtc" : "2019-10-15T10:00:00Z" ,
"EndUtc" : "2019-10-20T10:00:00Z" ,
"Type" : "OutOfOrder" ,
"CreatedUtc" : "2016-06-01T15:14:06Z" ,
"UpdatedUtc" : "2016-06-01T15:14:06Z"
} ,
{
"Id" : "4d98ad40-a726-409e-8bf3-2c12ff3c0331" ,
"AssignedResourceId" : "f7c4b4f5-ac83-4977-a41a-63d27cc6e3e9" ,
"Name" : "Resource block 2" ,
"StartUtc" : "2019-10-15T10:00:00Z" ,
"EndUtc" : "2019-10-20T10:00:00Z" ,
"Type" : "InternalUse" ,
"CreatedUtc" : "2016-06-01T15:14:06Z" ,
"UpdatedUtc" : "2016-06-01T15:14:06Z"
}
]
}
Property
Type
Contract
Description
ResourceBlocks
array of Resource blocks
required
Resource blocks added.
Removes specified resource blocks from the resources.
[PlatformAddress]/api/connector/v1/resourceBlocks/delete
{
"ClientToken" : "E0D439EE522F44368DC78E1BFB03710C-D24FB11DBE31D4621C4817E028D9E1D" ,
"AccessToken" : "C66EF7B239D24632943D115EDE9CB810-EA00F8FD8294692C940F6B5A8F9453D" ,
"Client" : "Sample Client 1.0.0" ,
"ResourceBlockIds" : [
"bf1e10b7-8a03-4675-9e27-05fc84312a58" ,
"e8fb6bfb-d64a-4e7c-acfe-ab0400d01183"
]
}
Property
Type
Contract
Description
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.
ResourceBlockIds
array of string
required
Unique identifier of Resource blocks to be removed.