Skip to content

Latest commit

 

History

History
220 lines (168 loc) · 9 KB

ChunkApi.md

File metadata and controls

220 lines (168 loc) · 9 KB

ChunkApi

All URIs are relative to https://localhost/api/v5

Method HTTP request Description
createChunkAt POST /chunk/{world}/{x}/{z} Load & Generate a chunk
getChunkAt GET /chunk/{world}/{x}/{z} Get a chunk
listChunks GET /chunk/{world} List chunks

createChunkAt

Chunk createChunkAt(world, x, z, details, accept, pretty)

Load & Generate a chunk

Forces a chunk to be loaded into memory, and created if it does not exist. Required permissions: - chunk.create

Example

// Import classes:
//import io.swagger.client.ApiClient;
//import io.swagger.client.ApiException;
//import io.swagger.client.Configuration;
//import io.swagger.client.auth.*;
//import io.swagger.client.api.ChunkApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure API key authorization: ApiKeyHeader
ApiKeyAuth ApiKeyHeader = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyHeader");
ApiKeyHeader.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyHeader.setApiKeyPrefix("Token");

// Configure API key authorization: ApiKeyQuery
ApiKeyAuth ApiKeyQuery = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyQuery");
ApiKeyQuery.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyQuery.setApiKeyPrefix("Token");

ChunkApi apiInstance = new ChunkApi();
String world = "world_example"; // String | The uuid of the world in which to create the chunk
Integer x = 56; // Integer | The x-coordinate of the chunk (in chunk coordinates)
Integer z = 56; // Integer | The z-coordinate of the chunk (in chunk coordinates)
Boolean details = true; // Boolean | Add to include additional details, omit or false otherwise
String accept = "accept_example"; // String | Override the 'Accept' request header (useful for debugging your requests)
Boolean pretty = true; // Boolean | Add to make the Web-API pretty print the response (useful for debugging your requests)
try {
    Chunk result = apiInstance.createChunkAt(world, x, z, details, accept, pretty);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling ChunkApi#createChunkAt");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
world String The uuid of the world in which to create the chunk
x Integer The x-coordinate of the chunk (in chunk coordinates)
z Integer The z-coordinate of the chunk (in chunk coordinates)
details Boolean Add to include additional details, omit or false otherwise [optional]
accept String Override the 'Accept' request header (useful for debugging your requests) [optional] [enum: json, xml]
pretty Boolean Add to make the Web-API pretty print the response (useful for debugging your requests) [optional]

Return type

Chunk

Authorization

ApiKeyHeader, ApiKeyQuery

HTTP request headers

  • Content-Type: application/json, application/xml
  • Accept: application/json, application/xml

getChunkAt

Chunk getChunkAt(world, x, z, details, accept, pretty)

Get a chunk

Get detailed information about a chunk Required permissions: - chunk.one

Example

// Import classes:
//import io.swagger.client.ApiClient;
//import io.swagger.client.ApiException;
//import io.swagger.client.Configuration;
//import io.swagger.client.auth.*;
//import io.swagger.client.api.ChunkApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure API key authorization: ApiKeyHeader
ApiKeyAuth ApiKeyHeader = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyHeader");
ApiKeyHeader.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyHeader.setApiKeyPrefix("Token");

// Configure API key authorization: ApiKeyQuery
ApiKeyAuth ApiKeyQuery = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyQuery");
ApiKeyQuery.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyQuery.setApiKeyPrefix("Token");

ChunkApi apiInstance = new ChunkApi();
String world = "world_example"; // String | The uuid of the world in which to get the chunk
Integer x = 56; // Integer | The x-coordinate of the chunk (in chunk coordinates)
Integer z = 56; // Integer | The z-coordinate of the chunk (in chunk coordinates)
Boolean details = true; // Boolean | Add to include additional details, omit or false otherwise
String accept = "accept_example"; // String | Override the 'Accept' request header (useful for debugging your requests)
Boolean pretty = true; // Boolean | Add to make the Web-API pretty print the response (useful for debugging your requests)
try {
    Chunk result = apiInstance.getChunkAt(world, x, z, details, accept, pretty);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling ChunkApi#getChunkAt");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
world String The uuid of the world in which to get the chunk
x Integer The x-coordinate of the chunk (in chunk coordinates)
z Integer The z-coordinate of the chunk (in chunk coordinates)
details Boolean Add to include additional details, omit or false otherwise [optional]
accept String Override the 'Accept' request header (useful for debugging your requests) [optional] [enum: json, xml]
pretty Boolean Add to make the Web-API pretty print the response (useful for debugging your requests) [optional]

Return type

Chunk

Authorization

ApiKeyHeader, ApiKeyQuery

HTTP request headers

  • Content-Type: application/json, application/xml
  • Accept: application/json, application/xml

listChunks

List<Chunk> listChunks(world, details, accept, pretty)

List chunks

Gets a list of all the loaded chunks for the specified world. Required permissions: - chunk.list

Example

// Import classes:
//import io.swagger.client.ApiClient;
//import io.swagger.client.ApiException;
//import io.swagger.client.Configuration;
//import io.swagger.client.auth.*;
//import io.swagger.client.api.ChunkApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure API key authorization: ApiKeyHeader
ApiKeyAuth ApiKeyHeader = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyHeader");
ApiKeyHeader.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyHeader.setApiKeyPrefix("Token");

// Configure API key authorization: ApiKeyQuery
ApiKeyAuth ApiKeyQuery = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyQuery");
ApiKeyQuery.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyQuery.setApiKeyPrefix("Token");

ChunkApi apiInstance = new ChunkApi();
String world = "world_example"; // String | The uuid of the for which to get all chunks
Boolean details = true; // Boolean | Add to include additional details, omit or false otherwise
String accept = "accept_example"; // String | Override the 'Accept' request header (useful for debugging your requests)
Boolean pretty = true; // Boolean | Add to make the Web-API pretty print the response (useful for debugging your requests)
try {
    List<Chunk> result = apiInstance.listChunks(world, details, accept, pretty);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling ChunkApi#listChunks");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
world String The uuid of the for which to get all chunks
details Boolean Add to include additional details, omit or false otherwise [optional]
accept String Override the 'Accept' request header (useful for debugging your requests) [optional] [enum: json, xml]
pretty Boolean Add to make the Web-API pretty print the response (useful for debugging your requests) [optional]

Return type

List<Chunk>

Authorization

ApiKeyHeader, ApiKeyQuery

HTTP request headers

  • Content-Type: application/json, application/xml
  • Accept: application/json, application/xml