I created an API Gateway to Salesforce Enironment of a customer based on the Template for Salesforce.
Unfortunately not all REST APIs of the Customer are here visible. Somebody told me, that the standard Template for Salesforce doesn't have the customized REST APIs.
So i created a new API Gateway for Salesforce without a Template.
But now i don't know, how to get the documentation.
Salesforce told me, that they didn't have a Swagger File.
They gave me a WSDL-File, but for WSDL an URL is needed. So i put the file on a Webserver, and read it. But then i have only the content of the file visible, without any methods.

Or is there another way, to import as WSDL?
Then i exported the Documentation from the API Gateway with the Standard Template, and changed it, and imported in my own API Gateway. Now i have also access to the customer REST API with the Methods, but i am not sure, what i have insert in this File for operationId and the paramters in the methods of the Customer REST APIs:
"/services/data/v48.0/sobjects/F1__c/{id}": {
"get": {
"description": "Returns F1__c data of a ID ",
"operationId": "findAccountById",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The ID of the account to get",
"required": true,
"type": "array",
"items": {
"type": "string"
}
}
],
From where can i get these informations?
regards
Ralph