Get Project Session Detail

This service returns project session detail for the specified id parameter.

Get Project Session Detail

GET {{server-url}}/project-sessions/:id

It returns the project session object.

Query Parameters

NameTypeDescription

id*

Number

Represents project session's identifier

Headers

NameTypeDescription

Authorization*

String

UUID formatted access token

Content-Type*

String

application/json

PROJECT-ID*

String

UUID formatted projectId information

{
    // Response
}

Example Response Body

{
    "data": {
        "id": 610,
        "address": "0x1c2fE603d4C794137E30131B5D91d3A699341994",
        "sessionId": "a982c80e-497d-4066-aea7-6deba4377dcb",
        "status": "ACTIVE",
        "projectId": "b2e5ab50-f3d5-43ed-8761-eeba5913a72c"
    },
    "message": null,
    "code": 0,
    "error": false
}

Response Fields

KeyTypeDescription

id

Number

Project session's identifier

address

String

Represents user's wallet address that project session created for.

sessionId

String

Represents UUID formatted identifier.

status

Number

Represents project session's status

projectId

Object

Represents UUID formatted project identifier.

Last updated