createApiUser

@POST(value = "/{apiVersion}/apiuser")
abstract suspend fun createApiUser(@Body providerCallBackHost: ProviderCallBackHost, @Path(value = "apiVersion") apiVersion: String, @Header(value = "X-Reference-Id") uuid: String, @Header(value = "Ocp-Apim-Subscription-Key") productSubscriptionKey: String): Response<ApiUser>

Creates a new API user.

Return

A Response containing the created ApiUser.

Parameters

providerCallBackHost

The callback host for the provider.

apiVersion

The version of the API (e.g., v1_0 or v2_0).

uuid

A unique identifier for the request.

productSubscriptionKey

The subscription key for the product.