Nyehandel
  1. Currency
Nyehandel
  • Introduction
  • Getting started
  • Webhooks
  • API Reference
  • Order
    • Get order
      GET
    • Get orders
      GET
    • Create order
      POST
    • Deliver order
      POST
  • Shipping Method
    • Get Shipping methods
      GET
  • Product
    • Relation between products and variants
    • Get products
      GET
    • Update products batch
      PUT
    • Create products batch
      POST
    • Create product
      POST
    • Update product
      PUT
    • Create variant
      POST
    • Find product by sku or id
      GET
    • Delete product
      DELETE
  • Variant
    • Update variant batch
      PUT
    • Update variant
      PUT
    • Delete product variant
      DELETE
    • Find variant
      GET
  • Payment Method
    • Get Payment methods
      GET
  • Customer
    • Get Customer
    • Get Customers
    • Create Customer
  • Category
    • Create category
    • Update category
    • Get category
    • Delete category
    • Get categories
  • Currency
    • Get currencies
      GET
  • Headless
    • Pages
      • Get Page
      • Get Pages
    • Categories
      • Get Category
      • Get Pages
    • Startpage
    • System
  1. Currency

Get currencies

GET
/currencies
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/currencies' \
--header 'X-Identifier: {{x_identifier}}' \
--header 'Authorization: Bearer {{token}}' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
    "variants": [
        {
            "sku": "string",
            "stock": 0,
            "weight": 0,
            "purchase_price": "string",
            "stock_price": 0,
            "package_size": 0,
            "supplier_sku": "string",
            "price": 0,
            "compare_price": "string",
            "gtin": "string",
            "options": [
                {
                    "type": "string",
                    "value": "string"
                }
            ]
        }
    ]
}'
Response Response Example
{}

Request

Header Params
X-Identifier
string 
optional
Example:
{{x_identifier}}
Authorization
string 
optional
Example:
Bearer {{token}}
Accept
string 
optional
Example:
application/json
Content-Type
string 
optional
Example:
application/json
Body Params application/json
variants
array [object {11}] 
optional
sku
string 
optional
stock
integer 
optional
weight
integer 
optional
purchase_price
string 
optional
stock_price
integer 
optional
package_size
integer 
optional
supplier_sku
string 
optional
price
integer 
optional
compare_price
string 
optional
gtin
string 
optional
options
array [object {2}] 
optional
Examples

Responses

🟢200Success
application/json
Body
object {0}
Previous
Get categories
Next
Get Page
Built with