Skip to main content

Ranges API

All URIs are relative to http://localhost:1000

MethodHTTP requestDescription
ranges_create_new_rangePOST /ranges/create/ranges/create [POST]
ranges_delete_specific_rangePOST /ranges/{range}/delete/ranges/{range}/delete [POST]
ranges_snapshotGET /ranges/ranges [GET]

ranges_create_new_range​

Range ranges_create_new_range(seeded_range=seeded_range)

/ranges/create [POST]

This will create a new Range in the database.

Example​

import pieces_os_client
from pieces_os_client.models.range import Range
from pieces_os_client.models.seeded_range import SeededRange
from pieces_os_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost:1000
# See configuration.py for a list of all supported configuration parameters.
configuration = pieces_os_client.Configuration(
host="http://localhost:1000"
)


# Enter a context with an instance of the API client
with pieces_os_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = pieces_os_client.RangesApi(api_client)
seeded_range = pieces_os_client.SeededRange() # SeededRange | (optional)

try:
# /ranges/create [POST]
api_response = api_instance.ranges_create_new_range(seeded_range=seeded_range)
print("The response of RangesApi->ranges_create_new_range:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling RangesApi->ranges_create_new_range: %s\n" % e)

Parameters​

NameTypeDescriptionNotes
seeded_rangeSeededRange[optional]

Return type​

Range

Authorization​

No authorization required

HTTP request headers​

  • Content-Type: application/json
  • Accept: application/json, text/plain

HTTP response details​

Status codeDescriptionResponse headers
200OK-
500Internal Server Error-

ranges_delete_specific_range​

ranges_delete_specific_range(range)

/ranges/{range}/delete [POST]

This will delete a specific range from the database!

Example​

import pieces_os_client
from pieces_os_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost:1000
# See configuration.py for a list of all supported configuration parameters.
configuration = pieces_os_client.Configuration(
host="http://localhost:1000"
)


# Enter a context with an instance of the API client
with pieces_os_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = pieces_os_client.RangesApi(api_client)
range = 'range_example' # str | This is a identifier that is used to identify a specific range.

try:
# /ranges/\{range\}/delete [POST]
api_instance.ranges_delete_specific_range(range)
except Exception as e:
print("Exception when calling RangesApi->ranges_delete_specific_range: %s\n" % e)

Parameters​

NameTypeDescriptionNotes
rangestrThis is a identifier that is used to identify a specific range.

Return type​

void (empty response body)

Authorization​

No authorization required

HTTP request headers​

  • Content-Type: Not defined
  • Accept: text/plain

HTTP response details​

Status codeDescriptionResponse headers
204No Content-
500Internal Server Error-

ranges_snapshot​

Ranges ranges_snapshot()

/ranges [GET]

This will get a snapshot of all your ranges.

Example​

import pieces_os_client
from pieces_os_client.models.ranges import Ranges
from pieces_os_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost:1000
# See configuration.py for a list of all supported configuration parameters.
configuration = pieces_os_client.Configuration(
host="http://localhost:1000"
)


# Enter a context with an instance of the API client
with pieces_os_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = pieces_os_client.RangesApi(api_client)

try:
# /ranges [GET]
api_response = api_instance.ranges_snapshot()
print("The response of RangesApi->ranges_snapshot:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling RangesApi->ranges_snapshot: %s\n" % e)

Parameters​

This endpoint does not need any parameters.

Return type​

Ranges

Authorization​

No authorization required

HTTP request headers​

  • Content-Type: Not defined
  • Accept: application/json, text/plain

HTTP response details​

Status codeDescriptionResponse headers
200OK-
500Internal Server Error-