Salesloft Signal Registrations API

[https://developer.salesloft.com/docs/api/signal-registrations/](https://developer.salesloft.com/docs/api/signal-registrations/)

OpenAPI Specification

salesloft-signal-registrations-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: Salesloft Account and People Redaction Signal Registrations API
  description: This data allows integration owners to self-serve and claim more ownership over API usage, especially when using the Signals API to integrate with Rhythm. This ...
  version: 1.0.0
servers:
- url: http://{{salesloft_api_base_url}}
- url: https://accounts.salesloft.com
- url: http://{{salesloft_api_base_url}}external
security:
- oauth2Auth: []
tags:
- name: Signal Registrations
  description: '[https://developer.salesloft.com/docs/api/signal-registrations/](https://developer.salesloft.com/docs/api/signal-registrations/)'
paths:
  /integrations/signals/registrations/{id}:
    get:
      tags:
      - Signal Registrations
      summary: Salesloft Fetch a Signal Registration
      parameters:
      - name: id
        in: path
        schema:
          type: string
        required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json: {}
    delete:
      tags:
      - Signal Registrations
      summary: Salesloft Deletes a Signal Registrations
      parameters:
      - name: id
        in: path
        schema:
          type: string
        required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json: {}
    put:
      tags:
      - Signal Registrations
      summary: Salesloft Update a Signal Registration
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                type: string
                indicators:
                - {}
                description: {}
                data_shape: {}
                attribution:
                - sting
      parameters:
      - name: id
        in: path
        schema:
          type: string
        required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json: {}
  /integrations/signals/registrations:
    get:
      tags:
      - Signal Registrations
      summary: Salesloft List  Signal Registrations
      responses:
        '200':
          description: Successful response
          content:
            application/json: {}
    post:
      tags:
      - Signal Registrations
      summary: Salesloft Create a Signal Registration
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                type: string
                integration_id: 0
                indicators:
                - {}
                description: {}
                data_shape: {}
                attribution:
                - sting
      responses:
        '200':
          description: Successful response
          content:
            application/json: {}
components:
  securitySchemes:
    noauthAuth:
      type: http
      scheme: noauth
    bearerAuth:
      type: http
      scheme: bearer
    oauth2Auth:
      type: http
      scheme: oauth2