How can I add multiple images in Postman with POST method - postman

I want to add multiple images in the Postman for the POST API call.

You can go to Following steps:
Select body section in the request section
Select form-data
Add your key and hover on that key cell you will find the choice box with 2 choices(Text and File)
Select file in that choice box
Now you can find Select Files button in the Value cell (For select multiple file you can use ctrl+click)
You can see this image for a clear idea

Related

Adding Hyperlink in subgrid

I want to add Hyperlink for each row in subgrid. What I am looking is I want to display a invoice number as a link. When user clicks on that it should open a external window. Already tried with Hyperlink field available Dynamics. But its comes with https://.. I don't want to show the URL inside the grid.
Regards
Saman
I'm assuming your using the Out of the Box sub grid on the Web Interface / UCI, in which there isn't an out of the box way to render a clickable external URL.
Is the invoice in CRM, if it is a record in CRM and it can be related to the subgrid record, adding the lookup field to the view will provide a clickable link.
Your other option would be using a custom UI to build your subgrid, like Kendo or building a PCF.
Though I don't see any existing PCFs in the gallery that do this (https://pcf.gallery/categories#grid) you could likely use one as a starting point.

How to change "Introduction" at the top in Documentation generated by the Postman?

Is it possible to change the name "Introduction" at the top of requests?
It's a documentation generated by Postman, i haven't access to the HTML code.
I need to change this name, does anyone know how I do it?
Those headings are created when you go through the +New > Documentation flow.
They can be changed/deleted from here when you first create the Documentation.
If the Documentation has already been created - You can change the headings by editing the Collection.
Once the Edit Collection modal is open, you will find the details under the Description tab.

How to add a POST request in an existing collection?

I am trying to add POST request to an existing collection, Here by default only get request available. How can i change that?
You could either
Open a new tab (cntrl + T for Win, Ubuntu), select the new blank tab, choose POST request from the drop to the left of the url. Once you enter all details click on the down arrow next to save (right of the URL). Click on save as and name your request, add an optional description and then select the collection you wish to add it to.
We have different postman versions so I am unable to see the Add Request option in my drop down, but I recon you could click that and follow above steps.

Show only certain payload field in stackdriver logging webview

We use Stackdriver as our logging agent for a Docker environment that we have.
Payload comes in form:
structPayload: {
container: {…}
data: "[2016-11-16 08:15:49] INFO Domain xxx apiKey validation passed."
instance: {…}
}
The web view gives me when looking at the logs:
{"container":{"id":"xxx","created":"2016-11-15T05:35:05.533105502Z",...
Is there a way to make the web view give me the container data listed, since clicking it open on all of the events is just stupid and time consuming.. Sometimes randomly in has been giving me just the data, but I can't figure it out how to do it..
You can configure the logs viewer to display custom fields, as documented here. However, it is not possible to remove the default fields from being displayed -- that said, custom-configured fields that are not defaults appear earlier in the list, so they should be easier to keep visible.
There are 2 methods to add a custom field:
The first is to click on the "View Options" and Select "Modify Custom Fields"
You can then enter the name of the custom field you want to put on the main line, where it will be highlighted, for example, principalEmail. This can be a comma-separated list, and you can follow the JSON hierarchy with dots, if needed.
The other method is to open a single entry, click on the field you would like to add, and select "Add field to summary line", like so:
Either way, the field is added to the URL, as the customFacets parameter, so that you can share or bookmark the URL to the log viewer.

Accessing page methods from command in Sitecore

I'm building Sitecore sheer UI application. The main layout is aspx page NOT XAML, which contains a grid. I added a dropdown list as a ribbon button. When dropdown list changes, it must filter the grid source based on the selected value in dropdown.
When dropdown list changes, my custom command will trigger, but in the command I can't access my grid control so that I can do a filter. So my question is how can I call a method inside my aspx page from command class?
From your post I understand you have build an interface(.aspx page) which opens when user clicks dropdown value from the ribbon.
If this is the case then you can pass dropdown value in aspx page using querystring from your command file
In command file add following code
In execute method retrieve clicked value from CommandContext context:
Item item = context.Items[0];
In run method user SheerResponse to open aspx file:
UrlString urlString = new UrlString("youraspxpage.aspx?id="+(Dropdownvalue));
SheerResponse.ShowModalDialog(urlString.ToString());
In aspx file add following code to access which option you have selected from the
dropdown:
In page_load method access dropdown value from querystring, retrieve dropdown value and load grid:
string dropdownvalue= (Request.QueryString["id"]);
Let me know if the case is different.
Thx.