Problem with data storage in REST connector: metadata

Problem with data storage in REST connector: metadata

Dear Community Team,

I want to report an issue related to the REST connector in Skyvia. We have followed the instructions provided in the official documentation and research sources available on the internet, however, we have identified that the data is not being stored in the columns defined within the object created in the metadata.

When configuring the connector and performing integration tests, we have observed that:

1. The structure of the object in the metadata appears to be correctly defined according to the documentation.
2. When running the connection (eBay_Basic_Connection) in your test, it does not present any error. However, it does not reflect any data.

The data used was previously validated in Postman, Curl and REQBIN and all of them return the token. From the above, it can be deduced that this is not a data problem, I would appreciate it if you could help me with the correct guide to implement the connection through the REST connector to consume the eBay APIs. The JSON used in the connector metadata (eBay_Basic_Connection) is attached.

I look forward to your suggestion or solution.

{
  "ProviderConfiguration": {
    "BaseUrl": "https://api.ebay.com",
    "AuthenticationType": "Basic",
    "Headers": [
      {
        "Key": "Content-Type",
        "Value": "application/x-www-form-urlencoded"
      },
      {
        "Key": "Accept",
        "Value": "application/json"
      }
    ],
    "AuthenticationToken": {
      "TokenType": "Bearer",
      "TokenName": "access_token",
      "HeaderName": "Authorization"
    }
  },
  "Metadata": {
    "Objects": [
      {
        "Name": "ObtainToken",
        "Url": "/identity/v1/oauth2/token",
        "Method": "POST",
        "Body": "grant_type=client_credentials&scope=https%3A%2F%2Fapi.ebay.com%2Foauth%2Fapi_scope",
        "RequestFormat": "Raw",
        "ResultPath": "$",
        "Columns": [
          {
            "Name": "AccessToken",
            "APIPath": "access_token",
            "DbType": "String",
            "Length": 4000
          },
          {
            "Name": "ExpiresIn",
            "APIPath": "expires_in",
            "DbType": "Int32"
          },
          {
            "Name": "TokenType",
            "APIPath": "token_type",
            "DbType": "String",
            "Length": 50
          },
          {
            "Name": "FullResponse",
            "APIPath": "$",
            "DbType": "String",
            "Length": 10000
          }
        ]
      }
    ]
  }
}