Archastro s2s API

The s2s API from Archastro — 2 operation(s) for s2s.

Operations 2

POST /api/v1/teams/{team}/invites Create a team invite (server-to-server) #
POST /api/v1/teams/{team}/members Add a member to a team #

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/archastro-s2s-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

archastro-s2s-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Agent-first API for runtime + developer control-plane operations (users, teams, agents, routines, context, workflows, integrations, and webhooks).
  title: ArchAstro Platform Activity Feed S2s API
  version: v1
servers:
- url: https://developers.archastro.ai
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: s2s
paths:
  /api/v1/teams/{team}/invites:
    post:
      description: 'Generates a new invite code for the specified team using server-to-server

        authentication. Unlike the user-facing create endpoint, this variant does not

        require the caller to be a team member — it is intended for privileged

        back-end services acting on behalf of your platform.


        The returned code is a short alphanumeric string that users can present to

        join the team. Each call produces a new code; previously issued codes are

        not invalidated by this request.'
      operationId: post_api_v1_teams__team_invites
      parameters:
      - description: Team ID (`tm_...`) identifying the team for which to generate the invite code.
        example: string
        in: path
        name: team
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                description: The newly created team invite containing the join code.
                example:
                  code: string
                properties:
                  code:
                    description: Six-character alphanumeric join code. Present this value to the join-team endpoint to add a user to the team.
                    example: string
                    type: string
                required:
                - code
                type: object
          description: Successful response
        '401':
          description: Unauthorized
        '404':
          description: Team not found
      summary: Create a team invite (server-to-server)
      tags:
      - s2s
      x-auth:
      - secret_key
  /api/v1/teams/{team}/members:
    post:
      description: 'Adds a user or agent as a member of the specified team and returns the new

        membership with HTTP 201. Provide exactly one of `user` or `agent` — supplying

        both or neither returns a 400 error.


        The caller must have permission to manage the team. When an `app` is provided,

        the request is scoped to that app and the caller must hold a valid app-scoped

        token. The default role is `"member"` when `role` is omitted.'
      operationId: post_api_v1_teams__team_members
      parameters:
      - description: Team ID (`team_...`). The team to add the member to.
        example: string
        in: path
        name: team
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              example:
                agent: string
                role: string
                user: string
              properties:
                agent:
                  description: Agent ID (`agt_...`) to add as a member. Provide exactly one of `user` or `agent`.
                  example: string
                  type: string
                role:
                  description: Role to assign. One of `"owner"`, `"admin"`, or `"member"`. Defaults to `"member"` when omitted.
                  example: string
                  type: string
                user:
                  description: User ID (`usr_...`) to add as a member. Provide exactly one of `user` or `agent`.
                  example: string
                  type: string
              type: object
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TeamMembership'
          description: Successful response
        '401':
          description: Unauthorized
        '404':
          description: Team or member not found
        '422':
          description: Validation failed
      summary: Add a member to a team
      tags:
      - s2s
      x-auth:
      - secret_key
components:
  schemas:
    SolutionTemplateSummary:
      description: Identity and display metadata for a single template bundled by a Solution, used to represent each wrapped or sibling template at template granularity.
      example:
        description: An example description.
        display_name: Example Name
        id: id_0aBcDeFgHiJkLmNoPqRsTu
        kind: AgentTemplate
        lookup_key: string
        name: Example Name
        readme_url: https://example.com
        virtual_path: string
      properties:
        description:
          description: Short prose blurb from the template body's `description:` field. `null` when the body doesn't set one. Used as the card subhead in the Library carousel.
          example: An example description.
          type: string
        display_name:
          description: Human-facing label from the template body's `display_name:` field. `null` when the body doesn't set one. Library carousels use this for the card title, falling back to a humanized `name`.
          example: Example Name
          type: string
        id:
          description: Template config ID (`cfg_...`). `null` for inline-only templates.
          example: id_0aBcDeFgHiJkLmNoPqRsTu
          type: string
        kind:
          description: Template config kind, or `SolutionTemplateRef` / `SolutionTemplatePath` when unresolved.
          example: AgentTemplate
          type: string
        lookup_key:
          description: Lookup key stamped on the template config at import time. `null` when no lookup key was assigned.
          example: string
          type: string
        name:
          description: Canonical name from the template body. For `AgentTemplate` this doubles as the human-facing label; for `AgentToolTemplate` it's the LLM-facing tool function identifier (snake_case); for `AgentRoutineTemplate` it's the routine identifier (kebab-case). Clients rendering carousels should prefer `display_name` and fall back to humanizing `name`.
          example: Example Name
          type: string
        readme_url:
          description: Relative path to the public README endpoint with a signed token already embedded, scoped to this template's bundled markdown asset. `null` when the Solution body's `templates[].readme_path` is unset for this entry. Token expires in 1 hour — refresh via `GET /api/v1/solutions/:solution`.
          example: https://example.com
          type: string
        virtual_path:
          description: Stable virtual path assigned to the template config. `null` when no virtual path was set.
          example: string
          type: string
      required:
      - kind
      type: object
    Agent:
      description: An AI agent that can be configured with tools, routines, and skills, and invoked to handle conversations or tasks.
      example:
        acl:
          add:
          - actions:
            - read
            - write
            principal: string
            principal_type: user
          grants:
          - actions:
            - read
            - write
            principal: string
            principal_type: user
          remove:
          - principal: string
            principal_type: user
        app: dap_0aBcDeFgHiJkLmNoPqRsTu
        created_at: '2024-01-01T00:00:00Z'
        default_model: claude-3-7-sonnet-latest
        email: user@example.com
        id: agi_0aBcDeFgHiJkLmNoPqRsTu
        identity: You are a helpful assistant that answers questions about ArchAstro products.
        last_applied_template_config: cfg_0aBcDeFgHiJkLmNoPqRsTu
        lookup_key: string
        metadata:
          key: value
        name: Example Name
        org: org_0aBcDeFgHiJkLmNoPqRsTu
        org_name: Example Name
        originator: deploy-pipeline
        phone_number: '+15555550123'
        sandbox: dsb_0aBcDeFgHiJkLmNoPqRsTu
        source_solution:
          solution:
            category_keys:
            - string
            created_at: '2024-01-01T00:00:00Z'
            description: An example description.
            id: id_0aBcDeFgHiJkLmNoPqRsTu
            kind: Solution
            latest_solution: id_0aBcDeFgHiJkLmNoPqRsTu
            latest_version: 1.0.0
            lookup_key: string
            metadata:
              key: value
            name: Example Name
            org: org_0aBcDeFgHiJkLmNoPqRsTu
            org_logo:
              file: fil_0aBcDeFgHiJkLmNoPqRsTu
              height: 600
              media: med_0aBcDeFgHiJkLmNoPqRsTu
              mime_type: application/json
              refresh_url: https://example.com
              url: https://example.com
              width: 800
            org_name: Example Name
            org_slug: example-slug
            owners:
            - string
            readme_url: https://example.com
            solution_id: 01234567-89ab-cdef-0123-456789abcdef
            solution_version: 1.2.0
            tag_keys:
            - string
            template_kind: AgentTemplate
            templates:
            - description: An example description.
              display_name: Example Name
              id: id_0aBcDeFgHiJkLmNoPqRsTu
              kind: AgentTemplate
              lookup_key: string
              name: Example Name
              readme_url: https://example.com
              virtual_path: string
            updated_at: '2024-01-01T00:00:00Z'
            upgrade_available: true
            virtual_path: string
          template:
            created_at: '2024-01-01T00:00:00Z'
            description: An example description.
            display_name: Example Name
            id: id_0aBcDeFgHiJkLmNoPqRsTu
            kind: agent_tool_template
            lookup_key: string
            name: Example Name
            updated_at: '2024-01-01T00:00:00Z'
            virtual_path: string
        team: tem_0aBcDeFgHiJkLmNoPqRsTu
        updated_at: '2024-01-01T00:00:00Z'
        user: usr_0aBcDeFgHiJkLmNoPqRsTu
      properties:
        acl:
          $ref: '#/components/schemas/Acl'
          description: Access control list for the agent. Contains a `grants` array where each entry specifies `principal_type`, `principal`, and `actions`. `null` when no ACL restrictions are applied and the agent is accessible to all members of its scope.
        app:
          description: ID of the application that owns this agent (`dap_...`).
          example: dap_0aBcDeFgHiJkLmNoPqRsTu
          type: string
        created_at:
          description: When the agent was created (ISO 8601).
          example: '2024-01-01T00:00:00Z'
          format: date-time
          type: string
        default_model:
          description: Default LLM model identifier used by this agent when no model is specified at runtime (e.g. `"claude-3-7-sonnet-latest"`).
          example: claude-3-7-sonnet-latest
          type: string
        email:
          description: Email address provisioned for this agent. `null` if email delivery is not configured.
          example: user@example.com
          type: string
        id:
          description: Agent ID (`agi_...`).
          example: agi_0aBcDeFgHiJkLmNoPqRsTu
          type: string
        identity:
          description: System-level identity prompt that shapes the agent's persona and behavior.
          example: You are a helpful assistant that answers questions about ArchAstro products.
          type: string
        last_applied_template_config:
          description: ID of the AgentTemplate config (`cfg_...`) this agent was last provisioned or updated from. `null` for manually created agents.
          example: cfg_0aBcDeFgHiJkLmNoPqRsTu
          type: string
        lookup_key:
          description: Stable, user-defined identifier for this agent within the application. Unique per app.
          example: string
          type: string
        metadata:
          description: Arbitrary key-value metadata attached to the agent. Not interpreted by the platform.
          example:
            key: value
          type: object
        name:
          description: Human-readable display name for the agent. `null` if not set.
          example: Example Name
          type: string
        org:
          description: ID of the organization this agent belongs to (`org_...`). `null` if the agent is not org-scoped.
          example: org_0aBcDeFgHiJkLmNoPqRsTu
          type: string
        org_name:
          description: Display name of the organization this agent belongs to. `null` when the agent is not org-scoped or when the org association was not preloaded.
          example: Example Name
          type: string
        originator:
          description: Free-form label identifying the source or author that created this agent (e.g. a username or pipeline name).
          example: deploy-pipeline
          type: string
        phone_number:
          description: Phone number provisioned for this agent. `null` if SMS is not configured.
          example: '+15555550123'
          type: string
        sandbox:
          description: ID of the sandbox environment this agent is scoped to (`dsb_...`). `null` in production deployments.
          example: dsb_0aBcDeFgHiJkLmNoPqRsTu
          type: string
        source_solution:
          $ref: '#/components/schemas/AgentSourceSolution'
          description: Source Solution and AgentTemplate summary for agents provisioned from a Solution. Includes `upgrade_available`, `latest_version`, and `latest_solution` so you can render an upgrade badge without a separate dry-run call. `null` for hand-built agents and agents whose tracked template or parent Solution has been deleted. Populated only on single-agent GET responses, never on list endpoints.
        team:
          description: ID of the team that owns this agent (`tem_...`). `null` if the agent is not team-scoped.
          example: tem_0aBcDeFgHiJkLmNoPqRsTu
          type: string
        updated_at:
          description: When the agent was last modified (ISO 8601).
          example: '2024-01-01T00:00:00Z'
          format: date-time
          type: string
        user:
          description: ID of the user that owns this agent (`usr_...`). `null` if the agent is not user-scoped.
          example: usr_0aBcDeFgHiJkLmNoPqRsTu
          type: string
      required:
      - id
      type: object
    AclGrant:
      description: A single access-control grant that pairs a principal with the set of actions it is allowed to perform.
      example:
        actions:
        - read
        - write
        principal: string
        principal_type: user
      properties:
        actions:
          description: Array of action strings the principal is permitted to perform, e.g. `["read", "write"]`. Must contain at least one entry.
          example:
          - read
          - write
          items:
            type: string
          type: array
        principal:
          description: The identifier of the principal. A string ID for `"user"`, `"team"`, `"org"`, and `"agent"` types; one of `"admin"`, `"member"`, or `"viewer"` for `"org_role"`; omit entirely when `principal_type` is `"everyone"`.
          example: string
          type: string
        principal_type:
          description: The kind of principal receiving the grant. One of `"user"`, `"team"`, `"org"`, `"org_role"`, `"agent"`, or `"everyone"`.
          example: user
          type: string
      required:
      - actions
      - principal_type
      type: object
    AgentSourceSolution:
      description: 'Summary of the Solution and AgentTemplate that an agent was last provisioned from.

        Returned on single-agent responses; `null` for hand-built agents and agents whose tracked template or parent Solution has been deleted.'
      example:
        solution:
          category_keys:
          - string
          created_at: '2024-01-01T00:00:00Z'
          description: An example description.
          id: id_0aBcDeFgHiJkLmNoPqRsTu
          kind: Solution
          latest_solution: id_0aBcDeFgHiJkLmNoPqRsTu
          latest_version: 1.0.0
          lookup_key: string
          metadata:
            key: value
          name: Example Name
          org: org_0aBcDeFgHiJkLmNoPqRsTu
          org_logo:
            file: fil_0aBcDeFgHiJkLmNoPqRsTu
            height: 600
            media: med_0aBcDeFgHiJkLmNoPqRsTu
            mime_type: application/json
            refresh_url: https://example.com
            url: https://example.com
            width: 800
          org_name: Example Name
          org_slug: example-slug
          owners:
          - string
          readme_url: https://example.com
          solution_id: 01234567-89ab-cdef-0123-456789abcdef
          solution_version: 1.2.0
          tag_keys:
          - string
          template_kind: AgentTemplate
          templates:
          - description: An example description.
            display_name: Example Name
            id: id_0aBcDeFgHiJkLmNoPqRsTu
            kind: AgentTemplate
            lookup_key: string
            name: Example Name
            readme_url: https://example.com
            virtual_path: string
          updated_at: '2024-01-01T00:00:00Z'
          upgrade_available: true
          virtual_path: string
        template:
          created_at: '2024-01-01T00:00:00Z'
          description: An example description.
          display_name: Example Name
          id: id_0aBcDeFgHiJkLmNoPqRsTu
          kind: agent_tool_template
          lookup_key: string
          name: Example Name
          updated_at: '2024-01-01T00:00:00Z'
          virtual_path: string
      properties:
        solution:
          $ref: '#/components/schemas/SolutionSummary'
          description: Summary of the parent Solution, including `upgrade_available`, `latest_version`, and `latest_solution` when a newer system-scoped version is available for the agent's org-scoped Solution.
        template:
          $ref: '#/components/schemas/UpgradeTemplateSummary'
          description: Summary of the AgentTemplate config (`cfg_...`) the agent was last provisioned or updated from.
      required:
      - solution
      - template
      type: object
    SolutionSummary:
      description: A catalog entry for an imported Solution, including its display metadata, bundled templates, owner scopes, and any available upgrade information.
      example:
        category_keys:
        - string
        created_at: '2024-01-01T00:00:00Z'
        description: An example description.
        id: id_0aBcDeFgHiJkLmNoPqRsTu
        kind: Solution
        latest_solution: id_0aBcDeFgHiJkLmNoPqRsTu
        latest_version: 1.0.0
        lookup_key: string
        metadata:
          key: value
        name: Example Name
        org: org_0aBcDeFgHiJkLmNoPqRsTu
        org_logo:
          file: fil_0aBcDeFgHiJkLmNoPqRsTu
          height: 600
          media: med_0aBcDeFgHiJkLmNoPqRsTu
          mime_type: application/json
          refresh_url: https://example.com
          url: https://example.com
          width: 800
        org_name: Example Name
        org_slug: example-slug
        owners:
        - string
        readme_url: https://example.com
        solution_id: 01234567-89ab-cdef-0123-456789abcdef
        solution_version: 1.2.0
        tag_keys:
        - string
        template_kind: AgentTemplate
        templates:
        - description: An example description.
          display_name: Example Name
          id: id_0aBcDeFgHiJkLmNoPqRsTu
          kind: AgentTemplate
          lookup_key: string
          name: Example Name
          readme_url: https://example.com
          virtual_path: string
        updated_at: '2024-01-01T00:00:00Z'
        upgrade_available: true
        virtual_path: string
      properties:
        category_keys:
          description: Category tag keys declared in the Solution body, used to group Solutions in the catalog. An empty array when the body declares none.
          example:
          - string
          items:
            type: string
          type: array
        created_at:
          description: When the Solution config was first imported (ISO 8601).
          example: '2024-01-01T00:00:00Z'
          format: date-time
          type: string
        description:
          description: Short tagline or summary declared in the Solution body, used as the card subhead in catalog UIs. `null` when the Solution body does not set one.
          example: An example description.
          type: string
        id:
          description: Solution config ID (`cfg_...`).
          example: id_0aBcDeFgHiJkLmNoPqRsTu
          type: string
        kind:
          description: Resource type. Always `"Solution"`.
          example: Solution
          type: string
        latest_solution:
          description: When `upgrade_available` is `true`, the system-scope Solution config ID (`cfg_...`) that should be used as the upgrade source. `null` otherwise.
          example: id_0aBcDeFgHiJkLmNoPqRsTu
          type: string
        latest_version:
          description: When `upgrade_available` is `true`, the higher system-scope `solution_version` available to upgrade to. `null` otherwise.
          example: 1.0.0
          type: string
        lookup_key:
          description: The lookup key stored on the Solution config, if one was assigned during import. `null` when no lookup key was set.
          example: string
          type: string
        metadata:
          description: Arbitrary key-value metadata declared in the Solution body (e.g. category or display hints). Present as an empty object when the body declares none.
          example:
            key: value
          type: object
        name:
          description: Human-facing display name declared in the Solution body. `null` when the Solution body does not set one.
          example: Example Name
          type: string
        org:
          description: Organization ID (`org_...`) that owns this Solution config, when the Solution is scoped to a specific org. `null` for system-scope (app-level) Solutions.
          example: org_0aBcDeFgHiJkLmNoPqRsTu
          type: string
        org_logo:
          $ref: '#/components/schemas/ImageSource'
          description: Canonical image-source object for the resolved `org`'s logo, used as the principal category section glyph. Carries the signed `url` plus a `refresh_url`. `null` when `org_slug` is `null` or the org has no logo.
        org_name:
          description: Display name of the resolved `org`. Pairs with `org_slug` as the principal catalog category's label. `null` when `org_slug` is `null`.
          example: Example Name
          type: string
        org_slug:
          description: Resolved slug of the Solution body's `org` (the publishing organization), when set and it resolves to a real org visible to the viewer. When present this is the Solution's principal catalog category key — clients group the Solution under this org ahead of `category_keys`. `null` when the body has no `org` or it doesn't resolve.
          example: example-slug
          type: string
        owners:
          description: 'Owner scopes this Solution appears under. Members: `"system"` (app-level system scope) and/or `"org"` (viewer''s org scope).'
          example:
          - string
          items:
            type: string
          type: array
        readme_url:
          description: Relative path to the public README endpoint with a signed token already embedded. `null` when the Solution has no README. Token expires in 1 hour — refresh via `GET /api/v1/solutions/:solution`.
          example: https://example.com
          type: string
        solution_id:
          description: Stable UUID declared in the Solution body, used to identify the same logical Solution across multiple installed copies and owner scopes. `null` when the body omits it.
          example: 01234567-89ab-cdef-0123-456789abcdef
          type: string
        solution_version:
          description: Semver string declared in the Solution body (e.g. `"1.2.0"`). `null` when the body does not declare a version.
          example: 1.2.0
          type: string
        tag_keys:
          description: Freeform tag keys declared in the Solution body. An empty array when the body declares none.
          example:
          - string
          items:
            type: string
          type: array
        template_kind:
          description: Wrapped template kind — `"AgentTemplate"`, `"AutomationTemplate"`, `"AgentRoutineTemplate"`, `"AgentToolTemplate"`, `"AgentComputerTemplate"`, or `"SolutionTemplateRef"` for ref-mode bundles.
          example: AgentTemplate
          type: string
        templates:
          description: Template configs bundled by this Solution, in declaration order — the first entry is the deployable template the Solution wraps; the rest are sibling templates the wrapped template references.
          items:
            $ref: '#/components/schemas/SolutionTemplateSummary'
          type: array
        updated_at:
          description: When the Solution config was last modified (ISO 8601).
          example: '2024-01-01T00:00:00Z'
          format: date-time
          type: string
        upgrade_available:
          description: '`true` when this Solution is installed at the viewer''s org scope and the app-level system scope carries a higher `solution_version`. Always `false` for system-only rows.'
          example: true
          type: boolean
        virtual_path:
          description: The stable virtual path assigned to this Solution config, used as the deduplication key when the same Solution appears under multiple owner scopes. `null` when unset.
          example: string
          type: string
      required:
      - id
      - kind
      - owners
      - templates
      - upgrade_available
      type: object
    UpgradeTemplateSummary:
      description: Compact summary of an AgentTemplate config referenced by an agent upgrade or source-solution response.
      example:
        created_at: '2024-01-01T00:00:00Z'
        description: An example description.
        display_name: Example Name
        id: id_0aBcDeFgHiJkLmNoPqRsTu
        kind: agent_tool_template
        lookup_key: string
        name: Example Name
        updated_at: '2024-01-01T00:00:00Z'
        virtual_path: string
      properties:
        created_at:
          description: When this template config was created (ISO 8601).
          example: '2024-01-01T00:00:00Z'
          format: date-time
          type: string
        description:
          description: Description of the template from the config body. `null` if the current version has no `description` field.
          example: An example description.
          type: string
        display_name:
          description: Human-readable display name from the config body. `null` if the current version has no `display_name` field.
          example: Example Name
          type: string
        id:
          description: Template config ID (`cfg_...`).
          example: id_0aBcDeFgHiJkLmNoPqRsTu
          type: string
        kind:
          description: Config kind identifier for this template (e.g. `"agent_tool_template"`).
          example: agent_tool_template
          type: string
        lookup_key:
          description: Stable lookup key assigned to this template config. `null` if no lookup key is set.
          example: string
          type: string
        name:
          description: Template name as stored in the config body. `null` if the current version has no `name` field.
          example: Example Name
          type: string
        updated_at:
          description: When this template config was last modified (ISO 8601).
          example: '2024-01-01T00:00:00Z'
          format: date-time
          type: string
        virtual_path:
          description: Virtual filesystem path for this template config. `null` if not set.
          example: string
          type: string
      required:
      - id
      - kind
      type: object
    AclRemoveTarget:
      description: Identifies a principal to be removed from an access-control list.
      example:
        principal: string
        principal_type: user
      properties:
        principal:
          description: The identifier of the principal to remove. A string ID for `"user"`, `"team"`, `"org"`, and `"agent"` types; one of `"admin"`, `"member"`, or `"viewer"` for `"org_role"`. Omit when `principal_type` is `"everyone"`.
          example: string
          type: string
        principal_type:
          description: The kind of principal to remove. One of `"user"`, `"team"`, `"org"`, `"org_role"`, `"agent"`, or `"everyone"`.
          example: user
          type: string
      required:
      - principal_type
      type: object
    TeamMembership:
      description: A record representing a user's or agent's membership in a team, including their resolved identity details and role.
      example:
        agent:
          acl:
            add:
            - actions:
              - read
              - write
              principal: string
              principal_type: user
            grants:
            - actions:
              - read
              - write
              principal: string
              principal_type: user
            remove:
            - principal: string
              principal_type: user
          app: dap_0aBcDeFgHiJkLmNoPqRsTu
          created_at: '2024-01-01T00:00:00Z'
          default_model: claude-3-7-sonnet-latest
          email: user@example.com
          id: agi_0aBcDeFgHiJkLmNoPqRsTu
          identity: You are a helpful assistant that answers questions about ArchAstro products.
          last_applied_template_config: cfg_0aBcDeFgHiJkLmNoPqRsTu
          lookup_key: string
          metadata:
            key: value
          name: Example Name
          org: org_0aBcDeFgHiJkLmNoPqRsTu
          org_name: Example Name
          originator: deploy-pipeline
          phone_number: '+15555550123'
          sandbox: dsb_0aBcDeFgHiJkLmNoPqRsTu
          source_solution:
            solution:
              category_keys:
              - string
              created_at: '2024-01-01T00:00:00Z'
              description: An example description.
              id: id_0aBcDeFgHiJkLmNoPqRsTu
              kind: Solution
              latest_solution: id_0aBcDeFgHiJkLmNoPqRsTu
              latest_version: 1.0.0
              lookup_key: string
              metadata:
                key: value
              name: Example Name
              org: org_0aBcDeFgHiJkLmNoPqRsTu
              org_logo:
                file: fil_0aBcDeFgHiJkLmNoPqRsTu
                height: 600
                media: med_0aBcDeFgHiJkLmNoPqRsTu
                mime_type: application/json
                refresh_url: https://example.com
                url: https://example.com
                width: 800
              org_name: Example Name
              org_slug: example-slug
              owners:
              - string
              readme_url: https://example.com
              solution_id: 01234567-89ab-cdef-0123-456789abcdef
              solution_version: 1.2.0
              tag_keys:
              - string
              template_kind: AgentTemplate
              templates:
              - description: An example description.
                display_name: Example Name
                id: id_0aBcDeFgHiJkLmNoPqRsTu
                kind: AgentTemplate
                lookup_key: string
                name: Example Name
                readme_url: https://example.com
                virtual_path: string
              updated_at: '2024-01-01T00:00:00Z'
              upgrade_available: true
              virtual_path: string
            template:
              created_at: '2024-01-01T00:00:00Z'
              description: An example description.
              display_name: Example Name
              id: id_0aBcDeFgHiJkLmNoPqRsTu
              kind: agent_tool_template
              lookup_key: string
              name: Example Name
              updated_at: '2024-01-01T00:00:00Z'
              virtual_path: string
          team: tem_0aBcDeFgHiJkLmNoPqRsTu
          updated_at: '2024-01-01T00:00:00Z'
          user: usr_0aBcDeFgHiJkLmNoPqRsTu
        created_at: '2024-01-01T00:00:00Z'
        id: tmb_0aBcDeFgHiJkLmNoPqRsTu
        joined_at: '2024-01-01T00:00:00Z'
        metadata:
          key: value
        name: Example Name
 

# --- truncated at 32 KB (1024 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/archastro/refs/heads/main/openapi/archastro-s2s-api-openapi.yml