Get Project Detail

This service returns project detail for the specified id parameter.

Get Project Detail

GET {{server-url}}/clients/:id

It returns project object

Path Parameters

NameTypeDescription

id

Number

Represents project's identifier

Headers

NameTypeDescription

Authorization*

String

UUID formatted access token

{
    // Response
}

Example Response Body

{
  "data": {
    "id": 527,
    "name": "150422-1 Project-1",
    "projectId": "b2e5ab50-f3d5-43ed-8761-eeba5913a72c",
    "contractList": [
      {
        "id": 533,
        "address": "0xe93cc426001eA2b5972Bd36F6b9744E9B4885b16",
        "artifactName": "Qaf721",
        "type": "ERC721",
        "projectId": "b2e5ab50-f3d5-43ed-8761-eeba5913a72c"
      },
      {
        "id": 536,
        "address": "0xd39077cfB4FBa3f373045AEF798E41f10c59e88c",
        "artifactName": "Qaf1155",
        "type": "ERC1155",
        "projectId": "b2e5ab50-f3d5-43ed-8761-eeba5913a72c"
      },
      {
        "id": 539,
        "address": "0x1ac7a0A23648CB31Ff2117369b0Ab42331D06120",
        "artifactName": "QafMarketplace",
        "type": "MARKETPLACE",
        "projectId": "b2e5ab50-f3d5-43ed-8761-eeba5913a72c"
      }
    ],
    "network": {
      "id": 4,
      "name": "Local Ganache",
      "networkIdentifier": "ganache",
      "rpcUrl": "http://localhost:7545",
      "chainId": 5777,
      "coinSymbol": "ETH",
      "coinName": "Ethereum",
      "icon": "https://icon.ethereum.com"
    }
  },
  "message": null,
  "code": 0,
  "error": false
}

Response Fields

KeyTypeDescription

id

Number

Represents project's identifier

name

String

Represents project's name

projectId

String

Represents UUID formatted project's identifier

contractList

Array

Represents deployed contracts for the project

network

Object

Represents network identifier.

Last updated