Kirim Data E-Catalogue

Used by Marketplaces to send E-Catalogue Data to Customs

  • Development

URL Dev: https://apisdev-gw.beacukai.go.id/kirim-ekatalog-barkir-public/kirim-data-ekatalog-barkir

  • Production

URL Prod : https://apis-gw.beacukai.go.id/kirim-ekatalog-barkir-public/kirim-data-ekatalog-barkir

Kirim Data E-Catalogue

POST {API_URL}/e-catalogue/sendData

API Endpoint to send E-Catalogue data from Marketplace

Headers

NameTypeDescription

Authorization*

String

Bearer Token from Authorization API

Request Body

NameTypeDescription

Data E-Catalogue*

String

JSONSchema E-Catalogue

{
  "body": {},
  "statusCode": "ACCEPTED",
  "statusCodeValue": 0
}

JSONSchema Kirim Data E-Catalogue

{
    "$schema": "http://json-schema.org/draft-06/schema#",
    "type": "array",
    "items": {
        "$ref": "#/definitions/Welcome4Element"
    },
    "definitions": {
        "Welcome4Element": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
                "categoryCode": {
                    "type": "string"
                },
                "countryCode": {
                    "type": "string"
                },
                "currencyTypeCode": {
                    "type": "string"
                },
                "description": {
                    "type": "string"
                },
                "elementDescription": {
                    "type": "string"
                },
                "identityQualifierCode": {
                    "type": "string"
                },
                "marketplaceName": {
                    "type": "string"
                },
                "measurementUnit": {
                    "type": "string",
                    "format": "integer"
                },
                "sellerId": {
                    "type": "string"
                },
                "startingDate": {
                    "type": "string",
                    "format": "date"
                },
                "valueAmount": {
                    "type": "string",
                    "format": "integer"
                }
            },
            "required": [
                "categoryCode",
                "countryCode",
                "currencyTypeCode",
                "description",
                "elementDescription",
                "identityQualifierCode",
                "marketplaceName",
                "measurementUnit",
                "sellerId",
                "startingDate",
                "valueAmount"
            ],
            "title": "Welcome4Element"
        }
    }
}

Contoh Data Kirim E-Catalogue

[
  {
    "categoryCode": "ELECTRONIC",
    "countryCode": "CN",
    "currencyTypeCode": "USD",
    "description": "SETRIKA IRON 1",
    "elementDescription": "Setrika Miyako Iron",
    "identityQualifierCode": "CATCAN150501",
    "marketplaceName": "IKC",
    "measurementUnit": "PCE",
    "sellerId": "-",
    "startingDate": "2023-05-15",
    "valueAmount": "20"
  },
    {
    "categoryCode": "ELECTRONIC",
    "countryCode": "CN",
    "currencyTypeCode": "USD",
    "description": "CAR TOYS",
    "elementDescription": "Car toys toyota",
    "identityQualifierCode": "CATCAN150502",
    "marketplaceName": "IKC",
    "measurementUnit": "PCE",
    "sellerId": "-",
    "startingDate": "2023-05-15",
    "valueAmount": "15"
  }
]

Sample Response :

[
    {
        "status": "100",
        "data": "CATCAN150501",
        "messages": [
            "Data Received, waiting for CEISA validation"
        ]
    },
    {
        "status": "100",
        "data": "CATCAN150502",
        "messages": [
            "Data Received, waiting for CEISA validation"
        ]
    }
]

Last updated