Skip to content
Orillion logo
Soramitsu logo

Retrieving incoming premium contribution requests

Protocol: HTTP

EncodingJSON

Endpoint/data/api/v1/premium-provider-management/incoming

MethodGET

Parameters: —

Input/request structure:

A GET request to the endpoint.

Output/response structure:

Show
json5
{
  status: {
    code: 0, //integer($int32)
    name: 'string',
    message: 'string'
  },
  data: [
    {
      domainId: 'string',
      requestedByPeer: 'string',
      status: 'string(enum)' //Could be one of the following: PENDING, DECLINED, APPROVED, NONE
    }
  ]
}
{
  status: {
    code: 0, //integer($int32)
    name: 'string',
    message: 'string'
  },
  data: [
    {
      domainId: 'string',
      requestedByPeer: 'string',
      status: 'string(enum)' //Could be one of the following: PENDING, DECLINED, APPROVED, NONE
    }
  ]
}

Responses

Response CodeDescription
200Incoming premium contribution requests have been retrieved successfully.
500Internal server error.