How to use getSpaceGroups json-rpc api? - rpc

I want to get all the space groups assigned to a space. I was using the Atlassian REST API Browser and found the API " json-rpc/confluenceservice-v1/getSpaceGroups" to fetch the groups of a space. I tried using this API to fetch the space groups but got the error “The request body could not be parsed as JSON”. I entered ds in the body, I also tried using [“ds”], and “ds” but got no luck. Can anyone please tell me how to use this API?
I know this SOAP API will be removed in the future, but for the time being, I can’t wait for the REST API to arrive, so I’m okay with this one.

Related

Microsoft Graph APi Excel : Session creation with long-running operation pattern (when and how to do it)

I have been using Microsoft graph API to create/update/delete rows in Excel files.
However, my requests need processing of tens of thousands of records. Which is by default not supported by Microsoft graph API.
In order to do this we have to request workbook-session-id and use it to make a call to graph api for requests comprising of loads of rows.
However, When I try to Request for Workbook-session-id after multiple poling requests also the request fails to respond with a workbook-session-id and I am not able to leverage this feature.
Can Anyone help me resolve this
As MS graph API after the first poll fails to give success and ends up giving me error({"error":{"code":"LostDepartedOperation","message":"We're sorry. We ran into a problem completing your request.","innerError":{"code":"notFoundUncategorized","message":"The requested resource cannot be found.")

Binance API GET request multiple values

I am trying to send GET request with Binance API as below by using Postman. However I couldn't manage to get multiple values in symbol parameter. For example ETHUSDT and BTCUSDT - tried different syntax but none of them worked for me. How can I send GET request for multiple values? Or am I have to send GET request for each value?
{{url}}/api/v3/ticker/price?symbol=ETHUSDT
It seems best way to handle this get all prices as below and filter the symbols or in a loop send get request for each symbol we want to get.
{{url}}/api/v3/ticker/price
the documentation says it is available to add multiple symbols but when you attempt to get more than one it breaks. its a backend issue, its not set up to handle multiple symbols. it should accept using
symbols=["symbol", "symbol", symbol]
but it cant read that. reach out to Binance and tell them to update their api if you wish. i have tried to no avail.

Using Web API using VBO No Result

I just started using Blueprism, we have a requirement to call API with OAuth 2 authentication. I'm trying to get a POC going using WebServices - Oauth 2.0 VBO to make a request like below
Request Inputs
Request Outputs
When i submit the request, i do not get any result, i see that token is populated but not the result. can anyone please point what im doing incorrectly here?
i tried directly using the HTTP VBO but no luck
I figured out what i was lacking, im unable to attach scope to the request to get the result. i also changed the way of using Web API services. i used the one from system tab and was able to attach scope for client credential auth type and use actions. once i got that i was able to get the result successfully.

Loopback - get list of API endpoints via REST

Loopback has nice documentation which you can view at
http://<your-domain>:<your-port>/explorer
I want to write some tests for our server, and at the very least do a GET request for each of the endpoints that should be public and available over REST.
Loopback explorer clearly has this information somewhere - is there a way to get a list of endpoints programmatically?
I just want something like this list:
PATCH /ServicecontractViews
GET /ServicecontractViews
PUT /ServicecontractViews
POST /ServicecontractViews
PATCH /ServicecontractViews/{id}
GET /ServicecontractViews/{id}
HEAD /ServicecontractViews/{id}
GET /Notes/{id}
HEAD /Notes/{id}
PUT /Notes/{id}
DELETE /Notes/{id}
GET /Notes/{id}/exists
is it possible to get this information programmatically (while the server is live)?
The LoopBack explorer uses Swagger JSON to generate the UI you see.
If you watch the XHR requests using your browser debugger, you can grab the direct URL to the raw Swagger. This data should contain what you need, though not in quite as concise a format as you probably want.

Method not allowed when trying to access API methods via SOAP integration

Good day,
I'm having trouble calling DSAPI methods via SOAP ( C# Integration ). I keep getting 405 Method not allowed errors. So far I've tried calling the RequestTemplate and CreateEnvelopeFromTemplates methods, both of which fail. I was able to successfully retrieve the DSAPIServiceSoapClient object and also successfully login via the login method of the credential API. If you need more information, i'm ready to provide them. Thank you.
You're succeeding with the login, which is good.
My guess is that the other calls are not well formed. Perhaps they're missing the right base url (which you receive from the login call).
Are you switching to the different base url for your subsequent calls? (Different server name?)
I suggest that you try the API logging feature and see what it reports. It enables you to see a log of your API requests. See the Request Logging article for the classic DocuSign experience, or the new DocuSign UI.
i just needed to add the in the X-DocuSign-Authentication http header whenever i try to get a DSAPIClient object.

Resources