apiAiAccountOrgsOrgCredentialGet method

Future apiAiAccountOrgsOrgCredentialGet(
  1. String? org
)

Implementation

Future<dynamic> apiAiAccountOrgsOrgCredentialGet(String? org) async {
  final response = await http.get(
    Uri.parse('$dataBaseUrl/api/ai/account/orgs/$org/credential/'),
    headers: _headers(),
  );
  return json.decode(response.body);
}