Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | 10x 10x 10x 10x 10x | // Todo: remove this after api integration
export const mockApiKeyResponse = {
total: 4,
data: [
{
id: 160,
apiKey: "gs_dak_3571f4a7c2d849bf838fd7db7b7f7614",
name: "api test s",
description: "",
isSandbox: true,
accID: 10,
statusName: "active",
statusDisplayName: "Active",
allowedOrigins: ["*"],
createdBy: "Ioan Loan",
createdByAvatarURL:
"https://cdn.development.givepayments.com/customer-avatar/140098dd-3c70-4a17-b572-0997fa031892/38275803-7ee0-4608-9715-5f83c54a6a2a",
createdByRole: "owner",
lastUsedAt: null,
objID: "GS_DEV_YwU1cRjYcN70BdLkoq3R2A",
createdAt: 1737376221,
updatedAt: 1737376221,
},
{
id: 159,
apiKey: "gs_dak_12507e6aa70d4a7f99b38f43e9b7f61f",
name: "api test s",
description: "",
isSandbox: true,
accID: 10,
statusName: "rolled",
statusDisplayName: "Rolled",
allowedOrigins: ["*"],
createdBy: "Ioan Loan",
createdByAvatarURL:
"https://cdn.development.givepayments.com/customer-avatar/140098dd-3c70-4a17-b572-0997fa031892/38275803-7ee0-4608-9715-5f83c54a6a2a",
createdByRole: "owner",
lastUsedAt: null,
objID: "GS_DEV_vUNbdphO9zYQKNAxNzunHD",
createdAt: 1737376173,
updatedAt: 1737376221,
},
{
id: 119,
apiKey: "gs_dak_65cc2942e8eb4d79b12489b4198541ad",
name: "test",
description: "test",
isSandbox: false,
accID: 10,
statusName: "active",
statusDisplayName: "Active",
allowedOrigins: ["*"],
createdBy: "Ioan Loan",
createdByAvatarURL:
"https://cdn.development.givepayments.com/customer-avatar/140098dd-3c70-4a17-b572-0997fa031892/38275803-7ee0-4608-9715-5f83c54a6a2a",
createdByRole: "owner",
lastUsedAt: null,
objID: "GS_DEV_i14bYeWkdhSZC6Fn5XbO7E",
createdAt: 1736519371,
updatedAt: 1736519371,
},
{
id: 88,
apiKey: "gs_dak_032b3e2c451d443eac32e018246a2ee0",
name: "John",
description: "",
isSandbox: true,
accID: 10,
statusName: "active",
statusDisplayName: "Active",
allowedOrigins: ["*"],
createdBy: "Ioan Loan",
createdByAvatarURL:
"https://cdn.development.givepayments.com/customer-avatar/140098dd-3c70-4a17-b572-0997fa031892/38275803-7ee0-4608-9715-5f83c54a6a2a",
createdByRole: "owner",
lastUsedAt: null,
objID: "GS_DEV_0iU8re9ny9wRc64yjvE6UB",
createdAt: 1733130077,
updatedAt: 1733130077,
},
],
};
export const DEV_API_DOCUMENTATION_TITLE = "Documentation";
export const BASE_APP_URL = "givepayments.com";
export const MERCHANT_PATH_NAME = "merchant/api/";
export const PROVIDER_PATH_NAME = "provider/api/";
|