项目作者: socialwall-pro

项目描述 :
Wall API documentation
高级语言:
项目地址: git://github.com/socialwall-pro/wall-api-doc.git
创建时间: 2019-06-12T11:49:57Z
项目社区:https://github.com/socialwall-pro/wall-api-doc

开源协议:

下载


SocialWall Pro

SocialWall Pro - Wall API Documentation

Endpoint

Wall Status API

GET api/event/status/{wallId}

API access and usage

Create Content API needs an API key to be used. Contact our team using the contact form or our chat system on our website to get it. Create Content API is part of our Premium offer.

API key put it in the header request under the x-api-key key or as an URL argument using api_key key.

Example

  1. ### Parameter
  2. `wallId` : id of the Wall in which you want to inject the message. You can find that `wallId` in the URL of your Wall while in the Tool.
  3. ![wallId](https://www.socialwallpro.com/files/Image/20190605-wallid.png?uniqID=54548)
  4. ### Result
  5. #### Success

{
“error”: false,
“status” : “started”
}

  1. Possible values for status are `init`, `ready`, `started`, `completed`.
  2. `init`: configuration phase - no licence yet
  3. `ready`: means activated - licence attached to the Wall
  4. `started`: means running - licence is used
  5. `completed`: means stopped - licence is over
  6. #### Error

{
“error”: true,
“message”: ,
“errors”: <- optional
}

  1. Error message values:
  • API Key is missing (from header or query string)
  • API Key is incorrect
  • Wall not found, check your wallId
  • Request malformed
  • Sorry, a technical error occurred. Do not inject twice the same message id. If the error persists, contact the support
    ```