Currency

The API documentation provides the means to retrieve Currency data from PIM.

Currency List

GET https://api.dckappim.com/api/integration/currencies

By utilizing the endpoint, you can retrieve currency list information.

Headers

NameTypeDescription

token*

String

Access Token for PIM Integration.

x-domain*

String

Customer Account Name Example: For the Customer Account URL "demo.dckappim.com," the customer account name is "demo."

{
    "status": true,
    "message": "Currency List",
    "data": [
        {
            "id": 1,
            "code": "USD",
            "status": 1,
            "created_at": "2023-09-27 11:14:50",
            "updated_at": "2023-09-27 11:14:50"
        }
    ],
    "time": "2023-10-20T09:44:49.688032Z",
    "status_code": 200
}

Currency Show

GET https://api.dckappim.com/api/integration/currencies/show

By utilizing the endpoint, you can retrieve specific currency list information.

Headers

NameTypeDescription

token*

String

Access Token for PIM Integration.

x-domain*

String

Customer Account Name Example: For the Customer Account URL "demo.dckappim.com," the customer account name is "demo."

{
    "status": true,
    "message": "Currency Details",
    "data": {
        "id": 1,
        "code": "USD",
        "status": 1,
        "created_at": "2023-09-27 11:14:50",
        "updated_at": "2023-09-27 11:14:50"
    },
    "time": "2023-10-20T09:46:36.509249Z",
    "status_code": 200
}

Last updated