Skip to content

Prana API (1.0)

API Prana

Welcome !!! In our developer portal you will find everything you need to interact with our platform.

Our API works with the REST interface through the HTTPS protocol and using the JSON format for processing calls.

All requests are validated against an API Key that can be obtained manually from the Configuration section of the PRANA app.

Our goal is to offer the clearest possible documentation here.

Any suggestions can be sent to: info@prana.software

API Key

To use your API key, you need only call the api with your key in the header as follow:

X-Api-Key

Download OpenAPI description
Languages
Servers
https://api.prana.software

Stock Regularization

Manage your Stock Regularizations

Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations

Stock Transfer

Manage your Stock Transfers

Operations
Operations

Warehouse Movement

Manage your warehouse movements

Operations
Operations
Operations

DeliveryNote

Manage your DeliveryNotes

Operations

Warehouse Accumulate

Manage your warehouse accumulates

Operations
Operations
Operations

Entity Last Update

Manage the last-updated timestamps for entities

Operations

Period

Retrieves the available accounting periods in the app

Operations
Operations
Operations

Purchase Invoice

Manage your Purchase Invoices

Operations
Operations
Operations

Payment Method

Manage your Payment Methods

Operations
Operations

Recurring Billing Templates

Manage your recurring billing templates

Operations
Operations

Request

Get all your options.

curl -i -X GET \
  https://api.prana.software/api/v1/option

Responses

OK

Bodyapplication/jsonArray [
idinteger(int32)

Unique identifier of the option

Example: 1
namestring

Name of the option

Example: "theme"
typestring(ApiFieldTypeEnum)

Type of the option field

Enum"STRING""INTEGER""BOOLEAN""DATETIME""DATE""TIME""DECIMAL"
Example: "STRING"
defaultValuestring

Default value for the option

Example: "light"
idCompanyOptioninteger(int32)

Company option identifier

Example: 5
idUserParaminteger(int32)

User parameter identifier

Example: 10
valuestring

Current value of the option

Example: "dark"
]
Response
application/json
[ { "id": 1, "name": "theme", "type": "STRING", "defaultValue": "light", "idCompanyOption": 5, "idUserParam": 10, "value": "dark" } ]

Request

Get a specific option.

Path
optionNamestringrequired
curl -i -X GET \
  'https://api.prana.software/api/v1/option/{optionName}'

Responses

OK

Bodyapplication/json
optionsValuesobject

Map of option keys and their corresponding values

Example: {"theme":"dark","language":"en"}
Response
application/json
{ "optionsValues": { "theme": "dark", "language": "en" } }

Billing Series

Manage your Billing Series

Operations
Operations
Operations

PurchaseDeliveryNote

Manage your PurchaseDeliveryNotes

Operations
Operations
Operations