Agri Info Design User v2 API

V 2 User Controller

Operations 6

POST /v2/user/ simpleSignUpForWeb #
PUT /v2/user/ updateUser #
POST /v2/user/confirm simpleSignUpConfirm #
GET /v2/user/groups getUserGroupsInfo #
POST /v2/user/new simpleSignUp #
GET /v2/user/{username} getUser #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/agriinfodesign-user-v2-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

agriinfodesign-user-v2-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: AgriBus-Web Manager API
  version: 0.0.1
  title: AgriBus-Web Manager User V2 API
  termsOfService: http://agri-info-design.com/
  license:
    name: Some License
    url: http://agri-info-design.com/
servers:
- url: https://manager.agribus-connect.net/
tags:
- name: User v2
  description: V 2 User Controller
paths:
  /v2/user/:
    post:
      tags:
      - User v2
      summary: simpleSignUpForWeb
      description: Webから簡易サインアップします
      operationId: signupForWebUsingPOST
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/UserInfo'
      requestBody:
        content:
          application/json;charset=UTF-8:
            schema:
              $ref: '#/components/schemas/SimpleSignUpRequest'
        description: request
        required: true
    put:
      tags:
      - User v2
      summary: updateUser
      description: ユーザー情報を更新します。変更する項目はnickname,sendMeNews,language,systemOfUnitsです。
      operationId: updateUserUsingPUT_1
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/UserInfo'
      requestBody:
        content:
          application/json;charset=UTF-8:
            schema:
              $ref: '#/components/schemas/EditUserRequest'
        description: request
        required: true
  /v2/user/confirm:
    post:
      tags:
      - User v2
      summary: simpleSignUpConfirm
      description: 簡易サインアップのConfirmです。これで完全登録になります。
      operationId: confirmUsingPOST_1
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/UserInfo'
      requestBody:
        content:
          application/json;charset=UTF-8:
            schema:
              $ref: '#/components/schemas/SimpleSignUpConfirmRequest'
        description: request
        required: true
  /v2/user/groups:
    get:
      tags:
      - User v2
      summary: getUserGroupsInfo
      description: ユーザーが所属するグループ情報を取得します
      operationId: getUserGroupsInfoUsingGET
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/UserGroupsInfo'
  /v2/user/new:
    post:
      tags:
      - User v2
      summary: simpleSignUp
      description: 簡易サインアップします
      operationId: signupUsingPOST_1
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/UserInfo'
      requestBody:
        content:
          application/json;charset=UTF-8:
            schema:
              $ref: '#/components/schemas/SimpleSignUpRequest'
        description: request
        required: true
  /v2/user/{username}:
    get:
      tags:
      - User v2
      summary: getUser
      description: 指定したユーザーのユーザー情報を取得します
      operationId: getUserInfoUsingGET_1
      parameters:
      - name: username
        in: path
        description: username
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/UserInfo'
components:
  schemas:
    SimpleSignUpRequest:
      type: object
      required:
      - email
      properties:
        email:
          type: string
          description: Eメール
        language:
          type: string
          description: 表示言語・en/ja
        metaData:
          type: object
          description: ユーザーメタデータ
          additionalProperties:
            type: object
        region:
          type: string
          description: リージョン(your-region.agribus-connect.net を利用して調べてください)
        zoneinfo:
          type: string
          description: タイムゾーン
    UserGroupInfo:
      type: object
      properties:
        name:
          type: string
    PurchaseInfo:
      type: object
      properties:
        activeSubscriptionCount:
          type: integer
          format: int32
        autoRenewing:
          type: boolean
        billingVendor:
          type: string
          enum:
          - Google
          - Stripe
        plan:
          type: string
          enum:
          - Free
          - Standard
          - Enterprise
          - Plus
          - Professional
        planEnforced:
          type: boolean
        planExpiredAt:
          type: string
        planStartedAt:
          type: string
        purchases:
          type: array
          items:
            $ref: '#/components/schemas/Purchase'
        subscriptionId:
          type: string
        subscriptionIdForFunctionality:
          type: string
        trial:
          type: boolean
    EditUserRequest:
      type: object
      properties:
        language:
          type: string
          description: 言語
        nickname:
          type: string
          description: ニックネーム
        sendMeNews:
          type: boolean
          description: メルマガ受信
        systemOfUnits:
          type: string
          description: 単位
    UserInfo:
      type: object
      properties:
        calclatedPlan:
          type: string
          description: 後方互換性を保つためだけにあります。値はセットされることがありません。常にnullです。計算済みプランはpurchaseInfo#planを利用してください。
          enum:
          - Free
          - Standard
          - Enterprise
          - Plus
          - Professional
        customIconUrl:
          type: string
        email:
          type: string
        functionality:
          type: string
          enum:
          - AsFree
          - AsStandard
          - AsPlus
          - AsProfessional
        icon:
          type: string
          enum:
          - Default|https://s3-ap-northeast-1.amazonaws.com/agri-info-design-public/icons/ic_person_black_48dp.png
          - Gravatar|null
          - Custom|null
        iconUrl:
          type: string
        impersonatingNickname:
          type: string
        impersonatingUsername:
          type: string
        isEnterprise:
          type: boolean
        isFsMigrated:
          type: boolean
        isPayer:
          type: boolean
        language:
          type: string
        name:
          type: string
        nickname:
          type: string
        purchaseInfo:
          $ref: '#/components/schemas/PurchaseInfo'
        region:
          type: string
        sendMeNews:
          type: boolean
        sharedMountPoint:
          type: string
        stripeId:
          type: string
        systemAdmin:
          type: boolean
        systemOfUnits:
          type: string
          enum:
          - Metric
          - Imperial
        trialAvailable:
          type: boolean
        username:
          type: string
        zoneinfo:
          type: string
    Purchase:
      type: object
      properties:
        amountPaid:
          type: integer
          format: int64
        autoRenewing:
          type: boolean
        billingVendor:
          type: string
          enum:
          - Google
          - Stripe
        collectionMethod:
          type: string
        currency:
          type: string
        expiredAt:
          type: string
          example: '2016-01-01T00:00:00.000Z'
        invoiceId:
          type: string
        invoiceUrl:
          type: string
        orderId:
          type: string
        planId:
          type: string
        startedAt:
          type: string
          example: '2016-01-01T00:00:00.000Z'
        state:
          type: string
          enum:
          - Paid
          - Trial
          - NotPaid
          - Canceled
        subscriptionId:
          type: string
    UserGroupsInfo:
      type: object
      properties:
        userGroups:
          type: array
          items:
            $ref: '#/components/schemas/UserGroupInfo'
    SimpleSignUpConfirmRequest:
      type: object
      required:
      - confirmationCode
      - newPassword
      - nickName
      - secureToken
      - sendMeNews
      - username
      properties:
        confirmationCode:
          type: string
        newPassword:
          type: string
        nickName:
          type: string
        secureToken:
          type: string
        sendMeNews:
          type: boolean
        username:
          type: string
  securitySchemes:
    mykey:
      type: apiKey
      name: mykey
      in: header