mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
1014 B
80 lines
1014 B
3 years ago
|
GET http://localhost:8080/nc/{{projectId}}/api/v1/Film/v2
|
||
|
Accept: application/json
|
||
|
Content-Type: application/json
|
||
|
xc-auth: {{token}}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
###
|
||
|
|
||
|
GET http://localhost:8080/nc/{{projectId}}/api/v1/Actor/v2/1
|
||
|
Accept: application/json
|
||
|
Content-Type: application/json
|
||
|
xc-auth: {{token}}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
###
|
||
|
|
||
|
|
||
|
|
||
|
GET http://localhost:8080/nc/{{projectId}}/api/v2/Country
|
||
|
Accept: application/json
|
||
|
Content-Type: application/json
|
||
|
xc-auth: {{token}}
|
||
|
|
||
|
|
||
|
|
||
|
###
|
||
|
GET http://localhost:8080/nc/{{projectId}}/api/v2/Address?f=test123
|
||
|
Accept: application/json
|
||
|
Content-Type: application/json
|
||
|
xc-auth: {{token}}
|
||
|
|
||
|
|
||
|
|
||
|
###
|
||
|
|
||
|
POST http://localhost:8080/nc/{{projectId}}/generateLookup1
|
||
|
Accept: application/json
|
||
|
Content-Type: application/json
|
||
|
xc-auth: {{token}}
|
||
|
|
||
|
|
||
|
{
|
||
|
|
||
|
"type" : "Lookup"
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
###
|
||
|
|
||
|
POST http://localhost:8080/nc/{{projectId}}/generate
|
||
|
Accept: application/json
|
||
|
Content-Type: application/json
|
||
|
xc-auth: {{token}}
|
||
|
|
||
|
|
||
|
{
|
||
|
"table": "Address",
|
||
|
"type": "Formula",
|
||
|
"formula": "CONCAT(CountryName,'____sdsdsdsd')",
|
||
|
"alias": "test123"
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
###
|
||
|
|
||
|
|
||
|
|
||
|
|