0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

使っているクラウドなどの小ネタAdvent Calendar 2024

Day 12

ジョブカンに登録しているフォームの一覧を取得

Last updated at Posted at 2024-12-11

使っているクラウドなどの小ネタ Advent Calendar 2024 11日目

登録しているフォームの一覧が欲しいのですがcsvなどにエクスポートできなさそうですね。

image.png

仕方ないのでpostmanから呼び出してみます。

Json形式で取得できることはできました。

image.png

このJsonを整形してテーブル形式にしてみます。

以下のようなスクリプトを設定します

var template = `
  <style>
    .myTable {
      background-color : #dddbda;
    }
    .myTable th{
      width: 150px;
    }
    .myTable td{
      width: 150px;
    }
  </style>
  <table class="myTable">
      <tr>
          <th>Name</th>
          <th>Description</th>
      </tr>

      {{#each response.results}}
          <tr>
              <td>{{name}}</td>
              <td>{{description}}</td>
          </tr>
      {{/each}}
  </table>
`;

function constructVisualizerPayload() {
    var res = pm.response.json();
    var expectedSortedOrder = res.results.sort((a, b) => (a.name > b.name) ? 1 : -1);
    return { response: { results: expectedSortedOrder } };
}

pm.visualizer.set(template, constructVisualizerPayload());

image.png

テーブル形式に成形できました。これをコピペしてデータとします

image.png

後で気づきました。ファイルにできますね。

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?