List
Mendapatkan daftar alamat pengiriman pengguna
GetAddressList(params : { page: number, perPage: number })import { InaLib } from "ina-digital-sdk";
const inaLib = new InaLib({ mode: string, secret_key: string });
inaLib
.GetAddressList({ page: 1, perPage: 25 })
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});Contoh
import { InaLib } from "ina-digital-sdk";
const inaLib = new InaLib({ mode: 'prod', secret_key: '{your_secret_key}' })
inaLib.GetAddressList({page: 1, perPage: 25})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});Last updated
