{ "opencollection": "1.0.0", "info": { "name": "Oumla Core Server addresses tokenization API", "version": "1.0" }, "items": [ { "info": { "name": "tokenization", "type": "folder" }, "items": [ { "info": { "name": "List Tokens", "type": "http" }, "http": { "method": "GET", "url": "https://sandbox.oumla.com/api/v1/tokenization/tokens", "headers": [ { "name": "x-sdk-version", "value": "" } ], "params": [ { "name": "skip", "value": "", "type": "query" }, { "name": "take", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "List issued tokens for the organization with pagination." }, { "info": { "name": "Issue Token", "type": "http" }, "http": { "method": "POST", "url": "https://sandbox.oumla.com/api/v1/tokenization/tokens", "headers": [ { "name": "x-sdk-version", "value": "" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "Start the issue-token workflow. Returns the workflowId, tokenId, and status." }, { "info": { "name": "Link Contract", "type": "http" }, "http": { "method": "POST", "url": "https://sandbox.oumla.com/api/v1/tokenization/tokens/link", "headers": [ { "name": "x-sdk-version", "value": "" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "Link an existing deployed contract to the organization for tokenization." }, { "info": { "name": "List Collections", "type": "http" }, "http": { "method": "GET", "url": "https://sandbox.oumla.com/api/v1/tokenization/collections", "headers": [ { "name": "x-sdk-version", "value": "" } ], "params": [ { "name": "skip", "value": "", "type": "query" }, { "name": "take", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "List tokenization collections for the organization with pagination." }, { "info": { "name": "Create new Collection", "type": "http" }, "http": { "method": "POST", "url": "https://sandbox.oumla.com/api/v1/tokenization/collections", "headers": [ { "name": "x-sdk-version", "value": "" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "Start the create-collection workflow. Returns workflow ID; collection is created asynchronously." }, { "info": { "name": "Get collection by ID", "type": "http" }, "http": { "method": "GET", "url": "https://sandbox.oumla.com/api/v1/tokenization/collections/:id", "headers": [ { "name": "x-sdk-version", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "Collection ID" } ], "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "Get a single collection by its ID." }, { "info": { "name": "Delete collection by ID", "type": "http" }, "http": { "method": "DELETE", "url": "https://sandbox.oumla.com/api/v1/tokenization/collections/:id", "headers": [ { "name": "x-sdk-version", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "Collection ID" } ], "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "Delete a collection and its associated data." }, { "info": { "name": "Get Collection token details", "type": "http" }, "http": { "method": "GET", "url": "https://sandbox.oumla.com/api/v1/tokenization/collections/:id/tokens/:tokenId", "headers": [ { "name": "x-sdk-version", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "Collection ID" }, { "name": "tokenId", "value": "", "type": "path", "description": "Token ID" } ], "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "Get details of a specific token within a collection." }, { "info": { "name": "Mint token", "type": "http" }, "http": { "method": "POST", "url": "https://sandbox.oumla.com/api/v1/tokenization/collections/:id/tokens/mint", "headers": [ { "name": "x-sdk-version", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "Collection ID" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "Start mint workflow for a collection. Requires mint policy." }, { "info": { "name": "Get collection tokens by ID or type", "type": "http" }, "http": { "method": "GET", "url": "https://sandbox.oumla.com/api/v1/tokenization/collection/tokens", "headers": [ { "name": "x-sdk-version", "value": "" } ], "params": [ { "name": "skip", "value": "", "type": "query" }, { "name": "take", "value": "", "type": "query" }, { "name": "id", "value": "", "type": "query" }, { "name": "type", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "List tokens in a collection, optionally filtered by type, with pagination." }, { "info": { "name": "Burn token", "type": "http" }, "http": { "method": "POST", "url": "https://sandbox.oumla.com/api/v1/tokenization/collections/:id/tokens/burn", "headers": [ { "name": "x-sdk-version", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "Collection ID" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "Start burn workflow for tokens in a collection. Requires burn policy." }, { "info": { "name": "Get linked token by ID", "type": "http" }, "http": { "method": "GET", "url": "https://sandbox.oumla.com/api/v1/tokenization/tokens/:id", "headers": [ { "name": "x-sdk-version", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "Token ID" } ], "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "Get a linked token by its ID." }, { "info": { "name": "Unlink Token", "type": "http" }, "http": { "method": "DELETE", "url": "https://sandbox.oumla.com/api/v1/tokenization/tokens/:id", "headers": [ { "name": "x-sdk-version", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path", "description": "Token ID" } ], "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "docs": "Unlink a token from the organization." } ] } ], "bundled": true }