API-Explorer-II/src/obp/api-version.ts
2024-02-23 11:42:17 +01:00

7 lines
185 B
TypeScript

import { OBP_API_VERSION, get } from '../obp'
// Get API Versions
export async function getOBPAPIVersions(): Promise<any> {
return await get(`obp/${OBP_API_VERSION}/api/versions`)
}