Diaspora Contacts API

The Contacts API from Diaspora — 2 operation(s) for contacts.

OpenAPI Specification

diaspora-contacts-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: diaspora* Aspects Contacts API
  version: '1'
  description: 'The diaspora* API (version 1) as published in the official diaspora* API documentation. diaspora* is a decentralized social network, so there is no single API host: every pod exposes the same API under its own domain at /api/v1. Version discovery should be performed with nodeinfo before making requests. Authentication is OpenID Connect Core 1.0 with Dynamic Client Registration, because a manual application registration on a single pod is not sufficient. Only JSON is supported. NOTE: upstream marks this API as not yet stable pending the diaspora* 0.8.0.0 release.'
  contact:
    name: diaspora* project
    url: https://diasporafoundation.org/
  license:
    name: AGPL-3.0
    url: https://github.com/diaspora/diaspora/blob/develop/COPYRIGHT
servers:
- url: https://{pod}/api/v1
  description: Any diaspora* pod running a compatible release. Discover support via nodeinfo at https://{pod}/.well-known/nodeinfo.
  variables:
    pod:
      default: diaspora.social
      description: Hostname of the diaspora* pod to talk to.
tags:
- name: Contacts
paths:
  /aspects/{aspect_id}/contacts:
    get:
      operationId: getAspectsByAspectIdContacts
      summary: Get list of contacts in an aspect
      tags:
      - Contacts
      description: 'Required API scope: contacts:read'
      parameters:
      - name: aspect_id
        in: path
        required: true
        description: ID of the aspect.
        schema:
          type: integer
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '401':
          description: The API request requires authorization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
      - openIdConnect:
        - openid
        - contacts:read
    post:
      operationId: createAspectsByAspectIdContacts
      summary: Add a user to an aspect
      tags:
      - Contacts
      description: 'Required API scope: contacts:modify'
      parameters:
      - name: aspect_id
        in: path
        required: true
        description: ID of the aspect.
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                person:
                  type: object
                  description: The GUID of the person that should be added to the given aspect.
      responses:
        '204':
          description: No Content
        '401':
          description: The API request requires authorization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
      - openIdConnect:
        - openid
        - contacts:modify
  /aspects/{aspect_id}/contacts/{person_guid}:
    delete:
      operationId: deleteAspectsByAspectIdContactsByPersonGuid
      summary: Remove a user from an aspect
      tags:
      - Contacts
      description: 'Required API scope: contacts:modify'
      parameters:
      - name: aspect_id
        in: path
        required: true
        description: ID of the aspect.
        schema:
          type: integer
      - name: person_guid
        in: path
        required: true
        description: GUID of the person.
        schema:
          type: string
      responses:
        '204':
          description: No Content
        '401':
          description: The API request requires authorization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
      - openIdConnect:
        - openid
        - contacts:modify
components:
  schemas:
    Error:
      type: object
      description: Error envelope returned by the diaspora* API.
      properties:
        code:
          type: integer
          description: HTTP status code.
          example: 404
        message:
          type: string
          description: Human readable error message.
          example: Requested entity wasn't found
  securitySchemes:
    openIdConnect:
      type: openIdConnect
      description: OpenID Connect Core 1.0 (Authorization Code Flow or Implicit Flow) with Dynamic Client Registration 1.0. The openid scope is mandatory; public:read is always granted.
      openIdConnectUrl: https://diaspora.social/.well-known/openid-configuration
externalDocs:
  description: diaspora* API documentation
  url: https://diaspora.github.io/api-documentation/